我正在开发一个需要从Internet下载文件并将其存储在SDCard上的APP。 我注意到有些设备在下载时报告错误,例如“解析错误”。我假设某些设备没有SD卡或我在课堂上获得的路径不正确。如果没有SD卡或未安装,最安全的方法是支持所有设备? 这是我的代码:
/**
* Downloading file in background thread
* */
@Override
protected String doInBackground(String... f_url) {
int count;
try {
URL url = new URL(f_url[0]);
URLConnection conection = url.openConnection();
conection.connect();
// getting file length
int lenghtOfFile = conection.getContentLength();
// input stream to read file - with 8k buffer
InputStream input = new BufferedInputStream(url.openStream(), 8192);
// Output stream to write file
OutputStream output = new FileOutputStream(Environment.getExternalStorageDirectory().getPath()+"/Download/file.apk");
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;
}
我认为问题可能出在这一行:
OutputStream output = new FileOutputStream(Environment.getExternalStorageDirectory().getPath()+"/Download/file.apk");
我应该使用 getExternalStorageDirectory()并下载吗?或者是否存在所有设备共有的“最安全”位置?
答案 0 :(得分:1)
首先,您不希望使用AsyncTask下载文件。因为如果用户杀死承载任务的屏幕,则下载也将被终止。查看IntentService。
其次,请在此处熟悉Android代码示例:http://developer.android.com/guide/topics/data/data-storage.html#filesExternal
您可以检查可用的内容,然后获取相应的目录。