Java中通过代理连接至指定的URL

 http://wezly.iteye.com/blog/671919
公司要访问外网需要使用代理,突然对Java如何使用代理产生了兴趣。


方法一:

 

Java代码   收藏代码
  1. import java.io.BufferedReader;  
  2. import java.io.IOException;  
  3. import java.io.InputStreamReader;  
  4. import java.net.Authenticator;  
  5. import java.net.InetSocketAddress;  
  6. import java.net.PasswordAuthentication;  
  7. import java.net.Proxy;  
  8. import java.net.URL;  
  9. import java.net.URLConnection;  
  10. import java.util.regex.Matcher;  
  11. import java.util.regex.Pattern;  
  12.   
  13. public class ProxyConnectionTest {  
  14.     public static void main(String[] args) throws IOException {  
  15.         // 设置代理 地址和密码  
  16.         Proxy proxy = new Proxy(Proxy.Type.HTTP,   
  17.                 new InetSocketAddress(host, port));  
  18.   
  19.         // 设置代理的密码验证  
  20.         Authenticator auth = new Authenticator() {  
  21.             private PasswordAuthentication pa =   
  22.                 new PasswordAuthentication(username, password.toCharArray());  
  23.             @Override  
  24.             protected PasswordAuthentication getPasswordAuthentication() {  
  25.                 return pa;  
  26.             }  
  27.         };  
  28.         Authenticator.setDefault(auth);  
  29.           
  30.         // 打开连接  
  31.         System.out.println("connecting...");  
  32.         URL url = new URL("http://www.iteye.com/");  
  33.         URLConnection conn = url.openConnection(proxy);  
  34.   
  35.         // 读取内容  
  36.         InputStreamReader isr = new InputStreamReader(conn.getInputStream());  
  37.         BufferedReader br = new BufferedReader(isr);  
  38.         String line = null;   
  39.         while ((line = br.readLine()) != null) {  
  40.             System.out.println(line);  
  41.         }  
  42.           
  43.         System.out.println("done.");  
  44.     }  
  45. }  

 

然而,这里指定一些URL时总是出现这样那样的错误。比如就无法正常读取http://news.google.com,很多网站的域名后面必须加"/",如果"http://www.iteye.com/"才能取到内容,真是搞不通。

 

方法二:

Java代码   收藏代码
  1. import java.util.Properties;   
  2.   
  3. import java.net.*;   
  4.   
  5. import java.io.*;   
  6.   
  7. public class TestHttpProxy {   
  8.   
  9.  public static void main(String[] args) {   
  10.   
  11.   String sUrl = "http://java.sun.com/index.html";   
  12.   
  13.   Properties prop = System.getProperties();   
  14.   
  15.   prop.put("http.proxyHost","192.168.1.111");   
  16.   
  17.   prop.put("http.proxyPort","80");   
  18.   
  19.   try{   
  20.   
  21.    URL su = new URL(sUrl);   
  22.   
  23.    System.out.println("url : " + su);   
  24.   
  25.    URLConnection uc = su.openConnection();   
  26.   
  27.    System.out.println("uc : " + uc);   
  28.   
  29.    InputStream is = su.openStream();   
  30.   
  31.    System.out.println("ic : " + is.read());   
  32.   
  33.    is.close();   
  34.   
  35.    System.out.println("ok");   
  36.   
  37.   } catch(Exception e) {   
  38.   
  39.    e.printStackTrace();   
  40.   
  41.   }   
  42.   
  43.  }   
  44.   
  45. }   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值