`
jilong-liang
  • 浏览: 471437 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类

Jsoup 伪装请求头(转)

阅读更多
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());
	}

 Jsoup 伪装请求头

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics