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

Posted 再见理想

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA HTTP连接(HttpURLConnection)中使用代理(Proxy)及其验证(Authentication)相关的知识,希望对你有一定的参考价值。

 

 

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)的主要内容,如果未能解决你的问题,请参考以下文章

解析http协议的url

http基本get和post请求

爬虫基础

java创建HTTP持久连接

java 实现HTTP连接(HTTPClient)

java web基础2HTTP协议知识点总结