关于Jsoup 伪装请求头

来源:互联网 发布:windows所有快捷键 编辑:程序博客网 时间:2024/06/03 23:00
public static void main(String[] args) throws MalformedURLException, IOException {//Document parse = Jsoup.parse(new URL("http://info.bet007.com/cn/team/Summary.aspx?TeamID=35"), 10000);//Document parse = Jsoup.parse(new URL("http://www.baidu.com"), 10000);Connection connect = Jsoup.connect("http://info.bet007.com/cn/team/Summary.aspx?TeamID=35");Map<String, String> header = new HashMap<String, String>();header.put("Host", "http://info.bet007.com");header.put("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0");header.put("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");header.put("Accept-Language", "zh-cn,zh;q=0.5");header.put("Accept-Charset", "GB2312,utf-8;q=0.7,*;q=0.7");header.put("Connection", "keep-alive");Connection data = connect.data(header);Document document = data.get();System.out.println(document.html());}