重新建立与代理服务器的连接

时间:2016-11-29 18:51:32

标签: java curl post proxy httpurlconnection

我有一个有趣的场景。我有一个代理服务器地址,每当我向它发出HTTP请求时,它都应该为我提供一个新的退出IP。我注意到退出IP只有在我重新启动程序后才会改变,而不是每次循环迭代。以下是我的来源。

每次迭代循环调用getHTML:

    String result = getHTML("https://wtfismyip.com/text");


public static String getHTML(String urlToRead) throws Exception {
    InetSocketAddress addy = new InetSocketAddress("example.proxy.com", 1234);
    Proxy proxy = new Proxy(Proxy.Type.HTTP, addy);
    StringBuilder result = new StringBuilder();
    URL url = new URL(urlToRead);
    HttpURLConnection conn = (HttpURLConnection) url.openConnection(proxy);
    conn.setRequestMethod("GET");
    BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
    String line;
    while ((line = rd.readLine()) != null) {
        result.append(line);
    }
    rd.close();
    conn.disconnect();
    return result.toString();
}

每次结果都将继续保持相同的IP,直到我重新启动程序。我觉得有些流或套接字还没有关闭,它保持连接活着。

1 个答案:

答案 0 :(得分:0)

找到我的问题的答案。 TCP套接字保持活动状态,并允许它在不重新连接的情况下继续隧道连接到代理。

我需要在我的代码中的某处添加这个语句,我把它放在这个类初始化的开头。

    System.setProperty("http.keepAlive", "false");