Java设置代理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java设置代理相关的知识,希望对你有一定的参考价值。
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.*");
以上是关于Java设置代理的主要内容,如果未能解决你的问题,请参考以下文章