我是靠谱客的博主 搞怪龙猫,最近开发中收集的这篇文章主要介绍最简便、最直接、最安全的java Httpclient请求,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


import java.io.IOException;
import java.net.URI;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
public class InterfaceRequest {
static String url = "https://auto.16888.com/country.html";
public static void main(String[] args) {
System.out.println(findPinPais(url));
}
public static String findPinPais(String url) {
String content = "";
HttpGet httpGet = null; // 创建http GET请求
CloseableHttpResponse response = null; // response 对象
CloseableHttpClient httpclient = HttpClients.createDefault(); // 创建Httpclient对象
try {
URI uri = new URIBuilder(url).build();// 定义请求的参数
httpGet = new HttpGet(uri);
response = httpclient.execute(httpGet); // 执行http get请求
if (response.getStatusLine().getStatusCode() == 200) { // 判断返回状态是否为200
content = EntityUtils.toString(response.getEntity(), "UTF-8");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (response != null) {
try {
response.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (httpclient != null) {
try {
httpclient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return content;
}
}

最后

以上就是搞怪龙猫为你收集整理的最简便、最直接、最安全的java Httpclient请求的全部内容,希望文章能够帮你解决最简便、最直接、最安全的java Httpclient请求所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部