5

我正在尝试使用 JSoup 来抓取临时服务器上的一些页面。要使用浏览器查看登台服务器上的页面,我需要连接到 VPN。

我已连接到 VPN,但是当我使用 JSoup 尝试抓取页面时,它一直超时。如何让我的程序使用 VPN 连接。或者这里还有什么我没有想到的?

注意:我还在程序的另一部分使用了 HttpClient。有没有一种方法可以让我的程序在程序初始化后连接到 VPN/Proxy,以便 JSoup 和 HttpClient 都使用 VPN/Proxy。

谢谢

4

3 回答 3

9

您可以为代理设置 java 属性:

// if you use https, set it here too
System.setProperty("http.proxyHost", "<proxyip>"); // set proxy server
System.setProperty("http.proxyPort", "<proxyport>"); // set proxy port

Document doc = Jsoup.connect("http://your.url.here").get(); // Jsoup now connects via proxy

或者将网站下载到一个字符串中然后解析它:

final URL website = new URL("http://your.url.here"); // The website you want to connect

// -- Setup connection through proxy
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("<proxyserver>", 1234)); // set proxy server and port
HttpURLConnection httpUrlConnetion = (HttpURLConnection) website.openConnection(proxy);
httpUrlConnetion.connect();

// -- Download the website into a buffer
BufferedReader br = new BufferedReader(new InputStreamReader(httpUrlConnetion.getInputStream()));
StringBuilder buffer = new StringBuilder();
String str;

while( (str = br.readLine()) != null )
{
    buffer.append(str);
}

// -- Parse the buffer with Jsoup
Document doc = Jsoup.parse(buffer.toString());

您也可以使用HttpClient此解决方案。

于 2013-02-05T19:47:53.263 回答
6

从 1.9 版开始,您可以在连接上进行设置:https ://jsoup.org/apidocs/org/jsoup/Connection.html#proxy-java.net.Proxy-

JSoup.connect("http://your.url.here").proxy("<proxy-host>", <proxy-port>).get();
于 2016-09-07T10:28:00.513 回答
3

如果您的代理需要用户名/密码身份验证,则为 ollo 添加。

final String authUser = <username>;
final String authPassword = <password>;
Authenticator.setDefault(
   new Authenticator() {
      public PasswordAuthentication getPasswordAuthentication() {
         return new PasswordAuthentication(
               authUser, authPassword.toCharArray());
      }
   }
);

System.setProperty("http.proxyHost", <yourproxyhost>);
System.setProperty("http.proxyPort", <yourproxyport>);
System.setProperty("http.proxyUser", authUser);
System.setProperty("http.proxyPassword", authPassword);

Document doc = Jsoup.connect("http://your.url.here").get();
于 2013-12-27T06:44:47.810 回答