jsoup 通过网络地址获取内容 发送请求

 

/**
* 通过网络地址获取内容
* @param url

* @param host  可以不写
* @param port
* @return String
* @throws Exception
*/
public static String getContent(String url1, String host, String port) {
String s = "";
try {
Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost", host);
systemProperties.setProperty("http.proxyPort", port);
Document doc = Jsoup.connect(url1)
//.data("query", "Java")//请求参数
.userAgent("Mozilla")//设置User-Agen
.cookie("auth", "token")//设置cookie
.timeout(3000)//设置连接超时时间
.get();
s = doc.toString();
} catch (Exception e) {
System.out.println("代理IP测试请求超时");
}
return s;
}

你可能感兴趣的:(JSoup)