java HttpClient设置代理的话,用户名和密码怎么设置?

HttpClientclient=newHttpClient();//代理但是如果需要用户名呢?client.getHostConfiguration().setProx... HttpClient client = new HttpClient();
//代理但是如果需要用户名呢?
client.getHostConfiguration().setProxy(userData.proxyIP, userData.proxyPort)
希望做过的同学帮帮我,随便copy或是没验证的就算了。。。。最好是做过的,呵呵
展开
 我来答
samismiling
推荐于2017-10-02 · 知道合伙人软件行家
samismiling
知道合伙人软件行家
采纳数:1340 获赞数:5603

向TA提问 私信TA
展开全部

使用代理需要导入:commons-logging-1.1.jar,httpclient-4.0-beta2.jar ,httpcore-4.1-alpha1.jar 和 commons-codec-1.4.jar架包。

在连接代理时需要使用用户名和密码构造UsernamePasswordCredentials对象并作为参数传递给HttpClient对象。


具体用法如下:

public static void main(String args[])
{
 StringBuffer sb = new StringBuffer();
 //创建HttpClient实例
 HttpClient client = getHttpClient();
 //创建httpGet
 HttpGet httpGet = new HttpGet("http://www.csdn.net");
 //执行
 try {
  HttpResponse response = client.execute(httpGet);
  
  HttpEntity entry = response.getEntity();
  
  if(entry != null)
  {
   InputStreamReader is = new InputStreamReader(entry.getContent());
   BufferedReader br = new BufferedReader(is);
   String str = null;
   while((str = br.readLine()) != null)
   {
    sb.append(str.trim());
   }
   br.close();
  }
  
 } catch (ClientProtocolException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
 } catch (IOException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
 }
 System.out.println(sb.toString());
}
//设置代理
public static HttpClient getHttpClient() {
 DefaultHttpClient httpClient = new DefaultHttpClient();
 String proxyHost = "proxycn2.huawei.com";
 int proxyPort = 8080;
 String userName = "china\\******";
 String password = "*******“
 httpClient.getCredentialsProvider().setCredentials(
   new AuthScope(proxyHost, proxyPort),
   new UsernamePasswordCredentials(userName, password));
 HttpHost proxy = new HttpHost(proxyHost,proxyPort);
 httpClient.getParams().setParameter(ConnRouteParams.DEFAULT_PROXY, proxy);
 return httpClient;
}
iyfnx257jqx
2011-08-25 · TA获得超过327个赞
知道小有建树答主
回答量:981
采纳率:0%
帮助的人:546万
展开全部
没用过这款软件,不过设置页面背景表现在代码background上就是:
1.在整个页面中,那就是body部分,类似如下:
body {
background:url(文件地址) no-repeat;
}
2.在网页中的标签部分,则是标签
标签 {
background:url(文件地址) no-repeat;
}
需要说明的是,那个no-repeat的位置是设置是否重复,以及在什么地方重复repeat-x;repeat-y等等,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
乌采炜Et
2011-08-25
知道答主
回答量:7
采纳率:0%
帮助的人:6.5万
展开全部
UsernamePasswordCredentials creds = new UsernamePasswordCredentials(userData.id, userData.password);
client.getState().setProxyCredentials(AuthScope.ANY, creds);
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式