我是Android新手并开发了一个带有ProgressDialog的文件下载应用程序,它显示了下载百分比。 我使用AsyncTask,这是我的代码的麻烦部分。
protected String doInBackground(String... f_url){
int count;
try {
URL url = new URL(f_url[0]);
URLConnection conn = url.openConnection();
conn.connect();
// getting file length
int lenghtOfFile = conn.getContentLength();
// input stream to read file - with 8k buffer
InputStream input = new BufferedInputStream(url.openStream(), 8192);
File direct = new File(folder);
if(!direct.exists()) {
direct.mkdirs();
}
// Output stream to write file
OutputStream output = new FileOutputStream(apkPath);
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....
// After this onProgressUpdate will be called
publishProgress(""+(int)((total*100)/lenghtOfFile));
// writing data to file
output.write(data, 0, count);
}
// flushing output
output.flush();
// closing streams
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
return null;
}
我的问题是这个代码在Android API 16(JB)上工作得很好,但在API 19(KitKat)上却没有。在KitKat设备上,进度条百分比不会更新(始终为0)。检查代码后,我发现conn.getContentLength()在KitKat上运行时返回-1。所以它无法更新进度。但是当我在API 16(JB)上运行它时,它会返回正确的文件大小。
有人可以帮我解决这个问题吗?
提前谢谢。
答案 0 :(得分:1)
您是否阅读过Android 4.4中的迁移到WebView:http://developer.android.com/guide/webapps/migrating.html
块引用 如果从应用程序的UI线程以外的任何线程调用WebView上的方法,则可能会导致意外结果。例如,如果您的应用程序使用多个线程,则可以使用runOnUiThread()方法确保代码在UI线程上执行:
runOnUiThread(new Runnable() {
@Override
public void run() {
// Code for WebView goes here
}
});
答案 1 :(得分:-2)
你可以试试这个:
conn.setRequestProperty("Accept-Encoding", "identity");