可能重复:
使用 android 下载文件
如何从互联网上的给定 URL 下载 .txt 文件并将其保存到 Android 手机中?它可以保存到内部存储、SD 存储或任何真正可供应用使用的地方。
我用来测试加载 URL WebViews 的 URL 是http://base.google.com/base/products.txt
可能重复:
使用 android 下载文件
如何从互联网上的给定 URL 下载 .txt 文件并将其保存到 Android 手机中?它可以保存到内部存储、SD 存储或任何真正可供应用使用的地方。
我用来测试加载 URL WebViews 的 URL 是http://base.google.com/base/products.txt
这应该可以解决问题。它将文件下载到sdcard/Download/products.txt
. 您可以在下面更改它。
try {
URL url = new URL("http://base.google.com/base/products.txt");
URLConnection conexion = url.openConnection();
conexion.connect();
int lenghtOfFile = conexion.getContentLength();
InputStream is = url.openStream();
File testDirectory = new File(Environment.getExternalStorageDirectory() + "/Download");
if (!testDirectory.exists()) {
testDirectory.mkdir();
}
FileOutputStream fos = new FileOutputStream(testDirectory + "/products.txt");
byte data[] = new byte[1024];
long total = 0;
int count = 0;
while ((count = is.read(data)) != -1) {
total += count;
int progress_temp = (int) total * 100 / lenghtOfFile;
/*publishProgress("" + progress_temp); //only for asynctask
if (progress_temp % 10 == 0 && progress != progress_temp) {
progress = progress_temp;
}*/
fos.write(data, 0, count);
}
is.close();
fos.close();
} catch (Exception e) {
Log.e("ERROR DOWNLOADING", "Unable to download" + e.getMessage());
}