代理java背后读取https网页数据

发布于 2024-07-17 12:32:20 字数 844 浏览 2 评论 0原文

我想阅读一个安全的网页数据,比如 https://www.paypal.com,我在代理后面。 我尝试过,

System.setProperty("java.net.useSystemProxies","true");
System.setProperty("htttps.proxyHost","myproxyhost");
System.setProperty("https.proxyPort","443");

URL u = new URL("https://www.paypal.com");
URLConnection uc = u.openConnection();
uc.setDoOutput(true);

StringBuffer sbuf=new StringBuffer();
BufferedReader in = new BufferedReader(
new InputStreamReader(uc.getInputStream()));

String res = in.readLine();
System.out.println(" Response from paypal "+res);
while ((res = in.readLine()) != null){
       sbuf.append(res).append(",");
}
in.close();

System.out.println(" Total Data received  "+sbuf);

我一直收到 UnknownHostException,但我成功地使用 http 网站获取数据。 我错过了什么吗?

谢谢, 罗希特

I want to read a secure webpage data say https://www.paypal.com, i am behind proxy. I tried with

System.setProperty("java.net.useSystemProxies","true");
System.setProperty("htttps.proxyHost","myproxyhost");
System.setProperty("https.proxyPort","443");

URL u = new URL("https://www.paypal.com");
URLConnection uc = u.openConnection();
uc.setDoOutput(true);

StringBuffer sbuf=new StringBuffer();
BufferedReader in = new BufferedReader(
new InputStreamReader(uc.getInputStream()));

String res = in.readLine();
System.out.println(" Response from paypal "+res);
while ((res = in.readLine()) != null){
       sbuf.append(res).append(",");
}
in.close();

System.out.println(" Total Data received  "+sbuf);

i am getting UnknownHostException all the time, I am successfully fetching data with http websites. Am i missing something?

Thanks,
Rohit

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺渁∝ 2024-07-24 12:32:20

您的 proxyHost 设置中有 3 个 T,即您使用的是 htttps 而不是 https

You've got 3 T's in your proxyHost settings, i.e. you are using htttps rather than https.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文