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

JAVA HTTP连接(HttpURLConnection)中使用代理(Proxy)及其验证(Authentication)

时间:2017-03-03 01:41:20      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:log   print   使用   type   验证   encode   base   add   密码   

 

 

public static void main(String[] args) {  
        // TODO Auto-generated method stub  
         try {  
                URL url = new URL("http://www.baidu.com");  
                // 创建代理服务器  
                InetSocketAddress addr = new InetSocketAddress("172.21.1.8",80);  
                Proxy proxy = new Proxy(Proxy.Type.HTTP, addr); // http 代理  
                URLConnection conn = url.openConnection(proxy);  
  
                    //以下三行是在需要验证时,输入帐号密码信息  
                String headerkey = "Proxy-Authorization";  
                String headerValue = "Basic "+Base64.encodeToString("atco:atco".getBytes(), false); //帐号密码用:隔开,base64加密方式  
                conn.setRequestProperty(headerkey, headerValue);  
                  
                InputStream in = conn.getInputStream();  
                // InputStream in = url.openStream();  
                String s = IOUtils.toString(in, "utf-8");  
                System.out.println(s);  
            } catch (Exception e) {  
                e.printStackTrace();  
            }  
    }

 

JAVA HTTP连接(HttpURLConnection)中使用代理(Proxy)及其验证(Authentication)

标签:log   print   使用   type   验证   encode   base   add   密码   

原文地址:http://www.cnblogs.com/exmyth/p/6493285.html

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