Android 开发者博客推荐使用HttpURLConnection
apache 以外的HttpClient
(http://android-developers.blogspot.com/2011/09/androids-http-clients.html)。我接受建议并在报告文件上传进度时遇到问题。
我获取进度的代码是这样的:</p>
try {
out = conncetion.getOutputStream();
in = new BufferedInputStream(fin);
byte[] buffer = new byte[MAX_BUFFER_SIZE];
int r;
while ((r = in.read(buffer)) != -1) {
out.write(buffer, 0, r);
bytes += r;
if (null != mListener) {
long now = System.currentTimeMillis();
if (now - lastTime >= mListener.getProgressInterval()) {
lastTime = now;
if (!mListener.onProgress(bytes, mSize)) {
break;
}
}
}
}
out.flush();
} finally {
closeSilently(in);
closeSilently(out);
}
无论文件大小如何,此代码的执行速度都非常快,但文件实际上仍在上传到服务器 util 我从服务器获得响应。似乎HttpURLConnection
在我调用时将所有数据缓存在内部缓冲区中out.write()
。
那么,我怎样才能获得实际的文件上传进度?似乎httpclient
可以做到这一点,但
httpclient
不是首选......有什么想法吗?