标签:local hosts cal 代理 sys http localhost sock port
Properties prop = System.getProperties();
http代理
prop.setProperty("http.proxyHost", host);
prop.setProperty("http.proxyPort", port);
https代理
prop.setProperty("https.proxyHost",host);
prop.setProperty("https.proxyPort", port);
socket代理
prop.setProperty("socksProxyHost", host);
prop.setProperty("socksProxyPort", port);
不使用代理的地址
prop.setProperty("http.nonProxyHosts", "localhost|127.0.0.*");
标签:local hosts cal 代理 sys http localhost sock port
原文地址:http://www.cnblogs.com/hatsusakana/p/7679911.html