java 能够完成多个http请求并回应_Java异步执行多个HTTP请求的例子(需要apache http类库)...

packageorg.jivesoftware.spark.util;importjava.io.IOException;importjava.util.concurrent.CountDownLatch;importjava.util.concurrent.ExecutorService;importjava.util.concurrent.Executors;importorg.apache.http.HttpResponse;importorg.apache.http.client.config.RequestConfig;importorg.apache.http.client.methods.HttpGet;importorg.apache.http.concurrent.FutureCallback;importorg.apache.http.impl.nio.client.CloseableHttpAsyncClient;importorg.apache.http.impl.nio.client.HttpAsyncClients;importorg.jivesoftware.DebugPrint;importorg.jivesoftware.spark.SparkManager;//异步埋点数据采集工具类

public classHotClickAsync {static ExecutorService service = Executors.newSingleThreadExecutor(); //单一线程//调用http请求。不阻塞主线程

public static void SendRequest(finalString event)throwsInterruptedException, IOException {

Runnable run= newRunnable() {

@Overridepublic voidrun() {try{

SendRequestAsync(event,SparkManager.getSessionManager().getUsername());

}catch(InterruptedException e) {//TODO Auto-generated catch block

e.printStackTrace();

}catch(IOException e) {//TODO Auto-generated catch block

e.printStackTrace();

}

}

};

service.execute(run);

}//阻塞HTTP调用

private static voidSendRequestAsync(String event,String username)throwsInterruptedException, IOException {

RequestConfig requestConfig=RequestConfig.custom()

.setSocketTimeout(1000) //http超时

.setConnectTimeout(1000).build(); //连接超时

CloseableHttpAsyncClient httpclient =HttpAsyncClients.custom()

.setDefaultRequestConfig(requestConfig).build();try{

httpclient.start();final HttpGet[] requests = new HttpGet[] { newHttpGet("http://XXXXXX.cn:81/HotClick.aspx?event="+ event +"&username="+username) //第一个采集地址//, new HttpGet("http://mta.qq.com")//第二个采集地址,http://mta.qq.com/

};//同步计数

final CountDownLatch latch = newCountDownLatch(requests.length);for (finalHttpGet request : requests) {

httpclient.execute(request,new FutureCallback() {

@Overridepublic void completed(finalHttpResponse response) {

latch.countDown();

DebugPrint.outStirng(request.getRequestLine()+ "####->"

+response.getStatusLine());

}

@Overridepublic void failed(finalException ex) {

latch.countDown();

DebugPrint.outStirng(request.getRequestLine()+ "####->" +ex);

}

@Overridepublic voidcancelled() {

latch.countDown();//DebugPrint.outStirng(request.getRequestLine()//+ " cancelled");

}

});

}

latch.await();

}finally{

httpclient.close();

}

DebugPrint.outStirng(" ### HotClickAsync Done ###");

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值