我是靠谱客的博主 忧虑耳机,最近开发中收集的这篇文章主要介绍set http proxy on httpclient4,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

set http proxy on httpclient4

//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);
           
        }

posted on 2012-05-03 11:48  lexus 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/lexus/archive/2012/05/03/2480373.html

最后

以上就是忧虑耳机为你收集整理的set http proxy on httpclient4的全部内容,希望文章能够帮你解决set http proxy on httpclient4所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部