我正在编写一个应用程序,只需点击一下按钮即可从URL下载文件。问题是在(显然)成功下载后,我无法在SD卡中找到该文件。我甚至尝试输出Context.fileList()
String数组,但它什么都没有(导致错误Log“No files created”)。
我怎么说完全下载了?好吧,我看到一旦按下按钮就会激活数据连接,并且它仅在3-4秒后松弛,在此期间我假设它正在下载不到100KB的文件。
以下是主要活动的代码:
package com.filedownloaddemo;
import java.io.File;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.os.Bundle;
import android.os.Environment;
import android.os.StrictMode;
import android.util.Log;
import android.view.View;
import android.widget.Button;
public class MainActivity extends Activity {
Button btn;
// URL to download from
String url = "http://www.edco.ie/_fileupload/The%20Interlopers%20-%20A%20short%20story%20by%20Saki.pdf";
// file variable
File outputFile;
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = (Button) findViewById(R.id.button1);
// set Android policy
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
.permitAll().build();
StrictMode.setThreadPolicy(policy);
}
// onClick handler for the button
public void download(View v) {
try {
outputFile = new File(Environment.getExternalStorageDirectory() + File.separator + "myfile.pdf");
DownloadHelper.downloadFile(url, outputFile);
} catch (Exception e) {
Log.d("DL_Error", e.getMessage());
}
if (this.fileList().length == 0) {
Log.d("DL_Error", "No files created.");
} else {
// write file names to Log
for (String s : this.fileList()) {
Log.d("Download", s);
}
}
}
}
这是下载的文件(这取自该社区的一个答案):
package com.filedownloaddemo;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import android.util.Log;
public class DownloadHelper {
public static void downloadFile(String url, File outputFile) {
try {
URL u = new URL(url);
URLConnection conn = u.openConnection();
int contentLength = conn.getContentLength();
DataInputStream stream = new DataInputStream(u.openStream());
byte[] buffer = new byte[contentLength];
stream.readFully(buffer);
stream.close();
DataOutputStream fos = new DataOutputStream(new FileOutputStream(
outputFile));
fos.write(buffer);
fos.flush();
fos.close();
} catch (Exception e) {
Log.d("DL_Error", e.getMessage());
}
}
}
请帮忙!
答案 0 :(得分:0)
少数事情:
Environment.getExternalStorageDirectory();
不是保存文件的正确位置,您需要为其提供文件名。
Environment.getExternalStorageDirectory() + "/myfile.pdf";
另请确保您在manifest.xml
中拥有以下权限:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
此外,onDestroy()
无法保证被调用,因此这不是一个值得检查的好地方。
最后,要在将设备连接到电脑时查看该文件,您可能需要让MediaScanner
知道有一个要编制索引的新文件。
保存文件后发送广播,以确保在MediaStore
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
intent.setData(Uri.fromFile(file));
sendBroadcast(intent);