崩溃时,获取存储在SD中的图像数量
我试图获取存储在SD中的所有图像的数量,但我不知道应用程序崩溃的原因。
码:
File dir = new File(Environment.getExternalStorageDirectory()
+ "/images");
File[] files = dir.listFiles();
//int numberOfImages=files.length;
Toast.makeText(getBaseContext(), "fdds"+files.length, Toast.LENGTH_SHORT).show();
logcat的:
03-19 11:54:44.425:E / AndroidRuntime(11775):致命例外:主要
03-19 11:54:44.425:E / AndroidRuntime(11775):java.lang.RuntimeException:无法启动活动ComponentInfo {com.androidbook.MediaStoreDemo / com.androidbook.MediaStoreDemo.MediaStoreDemoActivity}:java.lang.NullPointerException
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1651)
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.app.ActivityThread.access $ 1500(ActivityThread.java:117)
03-19 11:54:44.425:E / AndroidRuntime(11775):at android.app.ActivityThread $ H.handleMessage(ActivityThread.java:935)
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.os.Handler.dispatchMessage(Handler.java:99)
03-19 11:54:44.425:E / AndroidRuntime(11775):at android.os.Looper.loop(Looper.java:130)
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.app.ActivityThread.main(ActivityThread.java:3691)
03-19 11:54:44.425:E / AndroidRuntime(11775):在java.lang.reflect.Method.invokeNative(Native Method)
03-19 11:54:44.425:E / AndroidRuntime(11775):在java.lang.reflect.Method.invoke(Method.java:507)
03-19 11:54:44.425:E / AndroidRuntime(11775):at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:907)
03-19 11:54:44.425:E / AndroidRuntime(11775):at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:665)
03-19 11:54:44.425:E / AndroidRuntime(11775):at dalvik.system.NativeStart.main(Native Method)
03-19 11:54:44.425:E / AndroidRuntime(11775):引起:java.lang.NullPointerException
03-19 11:54:44.425:E / AndroidRuntime(11775):at com.androidbook.MediaStoreDemo.MediaStoreDemoActivity.onCreate(MediaStoreDemoActivity.java:31)
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
03-19 11:54:44.425:E / AndroidRuntime(11775):在android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
尝试,
if(files != null)
{
Toast.makeText(getBaseContext(), "fdds"+files.length, Toast.LENGTH_SHORT).show();
}
公共文件[] listFiles()
返回此文件所表示的目录中包含的文件数组。 如果此文件不是目录,则结果为空。 如果此文件的路径是绝对路径,则数组中文件的路径是绝对路径,否则它们是相对路径。
所以只需检查/images
目录..
请使用以下代码:
File dir = new File(Environment.getExternalStorageDirectory()
+ "images");
File[] files = dir.listFiles();
//int numberOfImages=files.length;
Toast.makeText(getBaseContext(), "fdds"+files.length, Toast.LENGTH_SHORT).show();
现在你的应用程序不应该抛出任何异常。
你应该使用image
而不是/image
上一篇: Crash, when getting the number of images stored in the SD