码迷,mamicode.com
首页 > 编程语言 > 详细

Java设置代理

时间:2017-10-17 10:05:15      阅读:156      评论:0      收藏:0      [点我收藏+]

标签: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.*");

Java设置代理

标签:local   hosts   cal   代理   sys   http   localhost   sock   port   

原文地址:http://www.cnblogs.com/hatsusakana/p/7679911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!