#使用httpClient模拟客户端调用服务
引入依赖
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.3</version>
</dependency>
简单使用
public static void main(String[] args)throws Exception{
//创建httpclient对象,相当于打开浏览器
CloseableHttpClient httpclient=HttpClients.createDefaunt();
//创建http get请求
for(int i=0:i<6;i++){
HttpGet httpGet=new httpGet("http:www.baidu.com/”);
closeableHttpResponse httpResponse=null;
try{
//执行请求,相当于按下回车
HttpResponse httpResponse=httpclient.execute(httpGet);
//判断返回状态
if(httpResponse.getStatusLine().getStatusCode()==200){
syso(EntityUtils.toString(httpResponse.getEntity(),“UTF-8”);
}
}finally{
if(httpResponse!=null){
//相当于关闭浏览器,释放资源
httpResponse.close();
}
httpclient.close();
}
}
}
本文介绍如何使用Apache的httpClient库在Java中模拟客户端调用服务。通过创建httpclient对象和HttpGet请求,可以执行GET请求并获取响应。示例代码展示了如何处理响应状态和释放资源。
955

被折叠的 条评论
为什么被折叠?



