我正在尝试使用相同的通用代码访问Internet和Intranet网站。使用代理时,我的Internet通话正常,但Intranet通话失败。我尝试了curl命令,它也适用于Intranet。
这是我的通用代码段。
URL url = new URL(targetURL);
if (proxy != null) {
inputStream = url.openConnection(proxy).getInputStream();
} else {
inputStream = url.openConnection().getInputStream();
}