是否有办法利用互联网连接环境(实用信息)与互联网连接?
Java 1.5 您可使用ProxySelector,然后介绍,在jdk1.4中是否有任何办法这样做?
我试图利用以下法典来看待这些问题,但即使我已经指定了我的代理,我还是把他们送回了。
String javaVersion = System.getProperty("java.version");
String ip = null;
String port = null;
String noProxyHosts = null;
if (javaVersion.startsWith("1.4")) {
ip = System.getProperty("proxyHost");
port = System.getProperty("proxyPort");
noProxyHosts = System.getProperty("http.nonProxyHosts");
} else {
ip = System.getProperty("deployment.proxy.http.host");
port = System.getProperty("deployment.proxy.http.port");
noProxyHosts = System.getProperty("deployment.proxy.override.hosts");
}
一个简短的背景;我有网上开 Java应用程序,可以浏览内部网络浏览器,需要这些浏览器。