gpt4 book ai didi

java - 如何通过代理从 HTTPS Url 获取数据?

转载 作者:太空宇宙 更新时间:2023-11-03 13:45:14 24 4
gpt4 key购买 nike

我收到连接超时:连接

我的代码:

    System.setProperty("http.proxyHost", "proxy.mycompany.com");
System.setProperty("http.proxyPort", "8080");

String url = URL_BASE + "&limit=5";
URL u = new URL(url);
BufferedReader in = new BufferedReader(
new InputStreamReader(
u.openStream()));

String inputLine;

while ((inputLine = in.readLine()) != null)
System.out.println(inputLine);

in.close();

最佳答案

如果您在 HTTPS 上获取 URL,则必须设置 https.proxyHosthttps.proxyPort。请参阅有关 Java Networking and Proxies 的文档, 第 2.2 节。

System.setProperty("https.proxyHost", "proxy.mycompany.com");
System.setProperty("https.proxyPort", "8080");

假设端口 8080 上的 proxy.mycompany.com 也是一个 HTTPS 代理

关于java - 如何通过代理从 HTTPS Url 获取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6028454/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com