通过邮寄中止文件上传

时间:2015-10-01 21:40:28

标签: java android apache-httpclient-4.x

我使用this question

将大型文件从Android上传到服务器。

(...)
entity.addPart(...)
entity.addPart("mediafile", new FileBody(file));
httpost.setEntity(entity);
HttpResponse response = httpClient.execute(httpost);    
(...)

文件很大,如果用户请求我需要一种取消上传的方法,但是HttpClient没有中止网络操作的功能。

如何终止此网络操作?

1 个答案:

答案 0 :(得分:1)

  

但是HttpClient没有中止网络操作的功能。

您可以使用httpost.abort();

希望这有帮助!