实际上现代浏览器的限制如下:Microsoft Internet Explorer(Browser)Microsoft states that the maximum length of a URL in Internet Explorer is 2,083 characters,with no more than 2,048 characters in the path portion of the URL....
浏览器1、IEIE浏览器(Microsoft Internet Explorer)对URL长度限制是2083(2K+53),超过这个限制,则自动截断(若是form提交则提交按钮不起作用)。中文字符的话只有2083/9=231个字符。2、Firefoxfirefox(火狐浏览器)的url长度限制为 ...
因此我们需要在连接时设置一下 maxBodySize,具体方法如下:Document=Jsoup.connect(url).header("Accept-Encoding","gzip,deflate").userAgent("Mozilla/5.0(Windows NT 6.1;WOW64;rv:23.0)Gecko/20100101 Firefox/23.0").maxBodySize(0)....