可能的原因就是之前执行过一次execute,但是没有释放资源。

hrp = httpClient.execute(req);

//这句释放资源
hrp.getEntity().consumeContent();
05-07 14:53