使用httpclient 4.3实现 socks5 proxy + 身份验证

本文介绍了如何在Java中利用httpclient 4.3库配置并使用Socks5代理,同时进行身份验证。详细步骤包括设置SOCKS5主机、端口,以及添加用户名和密码验证的实现方法。
摘要由CSDN通过智能技术生成

核心代码如下:
public class HttpClientUtil {
<span style="white-space:pre">	</span>
    private static String proxyHost="192.168.1.194";
    private static int proxyPort=10890;
    private static String proxyName="test";
    private static String proxyPwd="123321";


    public static String getWithProxy(String url, Map<String, String> headers, String charset) {
        //用户名和密码验证
    	<strong>Authenticator.setDefault(new Authenticator(){
            protected  PasswordAuthentication  getPasswordAuthentication(){
                PasswordAuthentication p=new PasswordAuthentication(proxyName, proxyPwd.toCharArray());
                return p;
            }
        });</strong>
    	
        Registry<ConnectionSocketFactory> reg = RegistryBuilder.<ConnectionSocketFactory> create()
         
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值