我正在尝试创建一个应用程序,为此我需要列出文件。我找到了一些有用的代码,并根据我的需求量身定制。这是我的(简单)代码:
// List all files from specific directory
public void listFiles(){
// Path to directory to scane
String path = Environment.getExternalStorageDirectory().toString()+"/Download/";
// New file-instance
File f = new File(path);
// Get the textview to display message
TextView textview = (TextView) findViewById(R.id.textView);
textview.setText(f.toString());
// List the files
File file[] = f.listFiles();
for(int i = 0; i < file.length; i++){
Log.d("Files", "Filename: " + file[i].getName());
}
}
我知道这是由我的for循环中的file.length引起的,但我不明白为什么我会收到此错误,因为它抓取了正确目录中的文件并且我在该目录中有文件...
电子
dit: This is my stack trace
java.lang.NullPointerException: Attempt to get length of null array
at com.example.filemaker.MainActivity.listFiles(MainActivity.java:79)
at com.example.filemaker.MainActivity$1.onClick(MainActivity.java:31)
at android.view.View.performClick(View.java:4780)
at android.view.View$PerformClick.run(View.java:19866)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5257)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
答案 0 :(得分:1)
那么NPE是什么线? file.length? 这意味着该文件为null, 看看文件javadoc,我们可以看到listFiles方法中的以下描述返回:
返回: 一组抽象路径名,表示此抽象路径名表示的目录中的文件和目录。如果目录为空,则数组将为空。 如果此抽象路径名不表示目录,或者发生I / O错误,则返回null。
您的路径似乎无效。