将大型文件从Android上传到服务器。
(...)
entity.addPart(...)
entity.addPart("mediafile", new FileBody(file));
httpost.setEntity(entity);
HttpResponse response = httpClient.execute(httpost);
(...)
文件很大,如果用户请求我需要一种取消上传的方法,但是HttpClient没有中止网络操作的功能。
如何终止此网络操作?
答案 0 :(得分:1)
但是HttpClient没有中止网络操作的功能。
您可以使用httpost.abort();
希望这有帮助!