概述
//proxy
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("conf/system.properties");
Properties properties = new Properties();
try {
properties.load(inputStream);
} catch (IOException e) {
// TODO Auto-generated catch block
logger.debug("load system.properties failure...");
}
String r=properties.getProperty("crawlNode.httpProxy", "none").toLowerCase().trim();
if (!r.equals("none")){
String[] arr=StringUtils.split(r, ":");
int port=80;
String url=r;
if (arr.length==2)
{
port=Integer.parseInt(arr[1]);
url=arr[0].trim();
}
HttpHost proxy = new HttpHost(url, port);
params.setParameter(ConnRoutePNames.DEFAULT_PROXY, proxy);
logger.debug("start using http proxy {}:{}",url,port);
}
转载于:https://www.cnblogs.com/lexus/archive/2012/05/03/2480373.html
最后
以上就是忧虑耳机为你收集整理的set http proxy on httpclient4的全部内容,希望文章能够帮你解决set http proxy on httpclient4所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复