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

开发技巧-Java通过HttpProxy实现穿越

时间:2017-06-27 18:51:36      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:建议   rgb   com   tunnel   uid   rect   异常   creat   封装   

需求描写叙述

    在正常的项目开发需求中。连接远程server的场景一般有二:
    1  自家实现的httpserver,api接口都已经约定好。
    2  开发平台服务。通常如新浪、百度云等平台提供的restful接口。
 
    以上的两种场景通过原生的URLConnection或是apache提供的httpclient工具包都能够方便的实现调用。

 
    然而,第三种场景是须要连接国外的开放服务,如google、twitter、tumblr等开放API接口。

    在伟大的gfw关怀下,我们被告知不要随便和陌生人说话...
    好吧,接下来让我们開始实现基于proxy的穿越吧!

 

准备工作

    1  http代理server
        建议花点银子买个稳定的VPN,带http代理的那种。
 
    2  外网訪问測试
        能够用chrome switchyOmega插件測试一把。不行直接设置IE系统代理
 
    准备完成。能够開始开发了
 

设计分析

    代理连接实现的关键步骤:

    一、设置代理server地址port

           方式一:Java支持以System.setProperty的方式设置http代理及port,例如以下:
 
    
System.setProperty("http.proxySet", "true");
System.setProperty("http.proxyHost", proxyHost);
System.setProperty("http.proxyPort", "" + proxyPort);
 
// 针对https也开启代理
System.setProperty("https.proxyHost", proxyHost);
System.setProperty("https.proxyPort", "" + proxyPort);

  

       关于Java属性的具体设置可參考:http://docs.oracle.com/javase/6/docs/technotes/guides/net/properties.html
 
 
         方式二:使用Proxy对象,在建立连接时注入到URLConnection就可以:
        
// 初始化proxy对象
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress(proxyHost, proxyPort));
 
// 创建连接
URL u = new URL(url);
URLConnection conn = u.openConnection(proxy);

  

        关于两种方式的比較
        第一种方式更值得推荐,当你採用基于URLConnection封装实现的类库时,採用setProperty的方式则不须要动里面的代码,绿色轻便。

 

    二、实现用户password校验

     方式一:将校验信息写入http头,将usernamepassword进行base64编码之后设置Proxy-Authorization头:
 
String headerKey = "Proxy-Authorization";
String encoded = new String(Base64.encodeBase64((new String(proxyUser + ":" + proxyPass).getBytes())));
String headerValue = "Basic " + encoded;
conn.setRequestProperty(headerKey, headerValue);
           
    不少资料会推荐这种方式。但经过測试,该方式在https的需求场景下无法正常工作

      
 
    方式二:实现Authenticator接口。并注入为全局验证器:
 
public static class MyAuthenticator extends Authenticator {
    String userName;
    String password;
 
public MyAuthenticator (String userName, String password) {
    this.userName = userName;
    this.password = password;
}
 
/**
* 当须要使用密码校验时自己主动触发
*/
@Override
protected PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(userName, password.toCharArray());
}
}
       
     在运行连接之前注入校验实例:
 
MyAuthenticator auth = new MyAuthenticator(proxyUser, proxyPass);
Authenticator.setDefault(auth);

  

实例代码

入口类

/**
 * 网络代理測试
 * 
 * <pre>
 * 设置代理主机及port:系统变量(https 需同步设置)
 * 设置代理验证方式:全局代理对象
 * 
 * 
 * https链接错误:
 * Unable to tunnel through proxy. Proxy returns "HTTP/1.0 407 Proxy Authentication Required"
 * 使用全局代理验证解决
 * 
 * </pre>
 * 
 * @author tzz
 * @createDate 2015年7月23日
 * 
 */
public class ProxyTest {
    private static String proxyHost = "xxx.xxxxx.com";
    private static int proxyPort = 8080;
    private static String proxyUser = "user";
    private static String proxyPass = "pass";
    public static void main(String[] args) {
        String url = "https://www.google.com/";
        String content = doProxy(url);
        System.out.println("Result :===================\n " + content);
    }
    /**
     * 通过系统变量方式实现代理
     * 
     * @param url
     * @return
     */
    public static String doProxy(String url) {
        // 设置系统变量

        System.setProperty("http.proxySet", "true");
        System.setProperty("http.proxyHost", proxyHost);
        System.setProperty("http.proxyPort", "" + proxyPort);
        // 针对https也开启代理
        System.setProperty("https.proxyHost", proxyHost);
        System.setProperty("https.proxyPort", "" + proxyPort);
        // 设置默认校验器
        setDefaultAuthentication();

        //開始请求
        try {
            URL u = new URL(url);
            URLConnection conn = u.openConnection();
            HttpsURLConnection httpsCon = (HttpsURLConnection) conn;
            httpsCon.setFollowRedirects(true);

            String encoding = conn.getContentEncoding();
            if (StringUtils.isEmpty(encoding)) {
                encoding = "UTF-8";
            }
            InputStream is = conn.getInputStream();
            String content = IOUtils.toString(is, encoding);
            return content;
        } catch (Exception e) {
            e.printStackTrace();
            return e.getMessage();
        }
    }

    /**
     * 设置全局校验器对象
     */
    public static void setDefaultAuthentication() {
        BasicAuthenticator auth = new BasicAuthenticator(proxyUser, proxyPass);
        Authenticator.setDefault(auth);
    }
}

校验器

    /**
     * 实现sun.net的代理验证
     * 
     * @author tzz
     * @createDate 2015年7月23日
     * 
     */
    public static class BasicAuthenticator extends Authenticator {
        String userName;
        String password;
        public BasicAuthenticator(String userName, String password) {
            this.userName = userName;
            this.password = password;
        }
        /**
         * Called when password authorization is needed. Subclasses should override the default implementation, which returns null.
         * 
         * @return The PasswordAuthentication collected from the user, or null if none is provided.
         */
        @Override
        protected PasswordAuthentication getPasswordAuthentication() {
            //System.out.println("DEBUG === use global authentication of password");
            return new PasswordAuthentication(userName, password.toCharArray());
        }
    }

常见问题

 连接时异常
     Unable to tunnel through proxy. Proxy returns "HTTP/1.0 407 Proxy Authentication Required"
      一般是代理server未能读取到验证信息所致,请检查目标url是否为https连接以及全局的Authenticator类是否正确设置。

 

开发技巧-Java通过HttpProxy实现穿越

标签:建议   rgb   com   tunnel   uid   rect   异常   creat   封装   

原文地址:http://www.cnblogs.com/gccbuaa/p/7086416.html

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