我正在尝试将一些参数发布到服务器,但是我需要设置代理。您可以帮助我对代码的“设置代理”部分进行排序吗?
HttpHost proxy = new HttpHost("xx.x.x.xx");
DefaultHttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter("3128",proxy);
HttpPost httpost = new HttpPost(url);
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("aranan", song));
httpost.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
HttpResponse response = httpclient.execute(httpost);
HttpEntity entity = response.getEntity();
System.out.println("Request Handled?: " + response.getStatusLine());
in = entity.getContent();
httpclient.getConnectionManager().shutdown();
是的,这是我自己解决的问题
httpclient.getParams().setParameter("3128",proxy);
应该
httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY,proxy);
Apache HttpClient 4.1的完整示例,可以在下面找到设置代理
HttpHost proxy = new HttpHost("ip address",port number);
DefaultHttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY,proxy);
HttpPost httpost = new HttpPost(url);
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("param name", param));
httpost.setEntity(new UrlEncodedFormEntity(nvps, HTTP.ISO_8859_1));
HttpResponse response = httpclient.execute(httpost);
HttpEntity entity = response.getEntity();
System.out.println("Request Handled?: " + response.getStatusLine());
InputStream in = entity.getContent();
httpclient.getConnectionManager().shutdown();
问题内容: 我已经制作了一个android应用https://play.google.com/store/apps/details?id=com.confesco.maggi ,它可以将Firebase用作数据库,在使用3G网络时效果很好。在我们学院的代理下,它没有连接到数据库。有什么办法可以解决这个问题。谢谢。 问题答案: 很抱歉,目前尚无通过代理使用Android客户端的解决方法。我已将其放在
本文向大家介绍jenkins 设置Nginx代理,包括了jenkins 设置Nginx代理的使用技巧和注意事项,需要的朋友参考一下 示例 Jenkins在本地运行在端口8080上。我们可以从端口80-> 8080建立代理,因此可以通过以下方式访问Jenkins: 而不是默认值 首先安装Nginx。 sudo aptitude -y install nginx 删除Nginx的默认设置 cd /et
我在Windows7上安装了Spring boot CLI,但我使用的是代理。我想知道如何配置代理与Spring Boot。我用-dhttp.proxyhost=proxyhostURL和-dhttp.proxyport=proxyportnumber设置了变量JAVA_OPTS,但在命令“spring run myscript.groovy”之后,我收到了消息:“startup failed:G
When running an Express app behind a proxy, set (by using app.set()) the application variable trust proxy to one of the values listed in the following table. Although the app will not fail to run if t
我们使用atlassian文档在一个服务器上安装了竹远程代理。我们已经批准了代理,它与竹子主服务器连接良好,我们能够运行构建。我们面临的问题是代理设置。是否有一种方法可以在远程代理中设置一个代理,该代理连接到外部服务器,以便成功地构建库。我们现在要做的是将代理手动配置到构建中的gradle任务。这不是做这件事的方法。因为在未来我们需要代理设置的地方可能会有100个版本。我们不能手动为所有这些构建配
问题内容: 看来我可以在构造new时指定代理: 取自http://hc.apache.org/httpcomponents-client- ga/tutorial/html/connmgmt.html#d5e475 是否可以修改现有客户端的代理设置。 问题答案: 您可以创建自己的HttpRoutePlanner实现,该实现将允许更改HttpHost。 然后,您可以在代码中使用此DynamicPro