CloseableHttpClient方式配置代理服务器访问外网

  小编最近在负责银行内部项目。其中有模块需要访问天眼查API接口,但由于公司全部内网,所以需要配置代理服务器才可以访问外网接口。

  又到了激动人心的上码时刻!

     public void Connect(HttpGet httpGet) {
String str = "";//返回结果
CloseableHttpResponse response = null;
try {
//1、创建httpClient
CloseableHttpClient client = null;
try {
//把代理设置到请求配置 代理IP 端口
HttpHost proxy = new HttpHost(PROXY_URL, PROXY_PROT);
//超时时间单位为毫秒
RequestConfig defaultRequestConfig = RequestConfig.custom()
.setConnectTimeout(CONNECTION_TIME_OUT).setSocketTimeout(CONNECTION_TIME_OUT)
.setProxy(proxy).build();
client = HttpClients.custom().setDefaultRequestConfig(defaultRequestConfig).build(); response = client.execute(httpGet);
} catch (UnknownHostException hostEx) {
hostEx.printStackTrace();
}
//2、获取实体
HttpEntity entity = response.getEntity();
//将实体装成字符串
str = EntityUtils.toString(entity);
System.out.println("返回结果---" + str);
response.close();
} catch (Exception e) {
e.printStackTrace();
}
}   最初没有负责的都是外网项目,没有经验。查看之后原来这么简单!
上一篇:关于第一次课件上的问题解决(动手动脑)(2021.10.25)


下一篇:保护Java语言中的全局范围的方法