与代理的URL连接不起作用,但是curl对于Intranet起作用

时间:2019-04-19 14:28:44

标签: java networking

我正在尝试使用相同的通用代码访问Internet和Intranet网站。使用代理时,我的Internet通话正常,但Intranet通话失败。我尝试了curl命令,它也适用于Intranet。

这是我的通用代码段。

URL url = new URL(targetURL);
if (proxy != null) {
    inputStream = url.openConnection(proxy).getInputStream();
} else {
    inputStream = url.openConnection().getInputStream();
}

0 个答案:

没有答案