如何检查目录是否存在文件?
即时通讯开发一个应用程序下载图像到用户phones.the下载部分正常工作,图像存储在“/ Android/data/files /”。我首先做一个检查,看看文件是否存在,如果没有,那么我想下载它。但是当我运行应用程序时,它一直在抛出一个NullpointerException
。这是因为在第一次运行时不存在“/ Android/data //文件/”?如果是这样,我该如何解决此问题。如何检查目录是否存在文件?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
testtv = (TextView) findViewById(R.id.testtv);
String imagename = "/img11.png";
File image = new File(Environment.getExternalStorageDirectory()
.getAbsolutePath()
+ "/Android/data/com.id.imagedownloader/files" + imagename);
// testtv.setText(image.toString());
if (image.exists()) {
testtv.setText("file exists");
} else {
Boolean result = isDownloadManagerAvailable(getApplicationContext());
if (result) {
downloadFile(imagename);
}
}
}
@SuppressLint("NewApi")
public void downloadFile(String imagename) {
// TODO Auto-generated method stub
String DownloadUrl = "http://testing16.comlu.com/images/" + imagename;
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse(DownloadUrl));
request.setDescription("sample file for testing"); // appears the same
// in Notification
// bar while
// downloading
request.setTitle("Test Title");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
}
String fileName = DownloadUrl.substring(
DownloadUrl.lastIndexOf('/') + 1, DownloadUrl.length());
request.setDestinationInExternalFilesDir(getApplicationContext(), null,
fileName);
// get download service and enqueue file
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
manager.enqueue(request);
}
public static boolean isDownloadManagerAvailable(Context context) {
try {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.GINGERBREAD) {
return false;
}
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setClassName("com.android.providers.downloads.ui",
"com.android.providers.downloads.ui.DownloadList");
List<ResolveInfo> list = context.getPackageManager()
.queryIntentActivities(intent,
PackageManager.MATCH_DEFAULT_ONLY);
return list.size() > 0;
} catch (Exception e) {
return false;
}
}
logcat的
11-03 14:13:35.821: E/AndroidRuntime(771): FATAL EXCEPTION: main
11-03 14:13:35.821: E/AndroidRuntime(771): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.id.imagedownloader/com.id.imagedownloader.MainActivity}: java.lang.NullPointerException: file
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1955)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1980)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.ActivityThread.access$600(ActivityThread.java:122)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1146)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.os.Handler.dispatchMessage(Handler.java:99)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.os.Looper.loop(Looper.java:137)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.ActivityThread.main(ActivityThread.java:4340)
11-03 14:13:35.821: E/AndroidRuntime(771): at java.lang.reflect.Method.invokeNative(Native Method)
11-03 14:13:35.821: E/AndroidRuntime(771): at java.lang.reflect.Method.invoke(Method.java:511)
11-03 14:13:35.821: E/AndroidRuntime(771): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
11-03 14:13:35.821: E/AndroidRuntime(771): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
11-03 14:13:35.821: E/AndroidRuntime(771): at dalvik.system.NativeStart.main(Native Method)
11-03 14:13:35.821: E/AndroidRuntime(771): Caused by: java.lang.NullPointerException: file
11-03 14:13:35.821: E/AndroidRuntime(771): at android.net.Uri.fromFile(Uri.java:441)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.DownloadManager$Request.setDestinationFromBase(DownloadManager.java:504)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.DownloadManager$Request.setDestinationInExternalFilesDir(DownloadManager.java:466)
11-03 14:13:35.821: E/AndroidRuntime(771): at com.id.imagedownloader.MainActivity.downloadFile(MainActivity.java:63)
11-03 14:13:35.821: E/AndroidRuntime(771): at com.id.imagedownloader.MainActivity.onCreate(MainActivity.java:40)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.Activity.performCreate(Activity.java:4465)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
11-03 14:13:35.821: E/AndroidRuntime(771): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1919)
11-03 14:13:35.821: E/AndroidRuntime(771): ... 11 more
设置本地目的地下载的文件的路径应用程序的外部文件中的目录
request.setDestinationInExternalFilesDir(context,Environment.DIRECTORY_DOWNLOADS,image);
不要忘记创建mkdirs迪尔斯()如果父文件夹不存在
我用下载功能更新了代码 – 2014-11-03 09:02:10
setDestinationInExternalFilesDir
需要dirType参数。你应该这样使用它:
request.setDestinationInExternalFilesDir(getApplicationContext(), Environment.DIRECTORY_DOWNLOADS,
fileName);
有了这个功能,你可以创建一个从字节数组文件,并检查是否存在这样。尝试这样的:
/**
* Create new file from byte array
* @param path
* @param array source
* @throws IOException
*/
public static void writeFile(String path, byte[] array) throws IOException {
File file = new File(path);
if (!file.exists() && array != null) {
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));
bos.write(array);
bos.flush();
bos.close();
} else {
// the file exists...
}
}
希望它能帮助你!
我刚刚在我运行CM11的GS3上测试了我的代码,它工作正常..它只在模拟器中崩溃。为什么? – 2014-11-03 11:58:17
如果尝试将文件保存在外部存储器中,可能会因此而崩溃。 – 2014-11-03 12:24:11
你可以添加logcat跟踪吗? – 2014-11-03 13:04:14
也许'尝试{...} catch(IOException e){...}' – jyoon 2014-11-03 08:52:58
是不是来自方法downloadFile的异常? com.id.imagedownloader.MainActivity.downloadFile(MainActivity.java:63),所以如果你在外部存储设置目的地,确保该文件夹存在,那么这应该工作(至少从我看到的) – Michael 2014-11-03 08:57:14
它不保证存在外部存储器 – for3st 2014-11-03 08:57:49