简体   繁体   中英

Android loading files into array NullPointerException

Hi I am trying load a set of "list" into a String array, and the list are simply .txt documents and I want to use the names of the files as the list name on my display, therefore I need to get all of the files in the folder that I had created named "Lists" and then display them into an arrayadapter.

private String[] getListNames() {
    //generates the file containing the list names
    File file = new File(this.getFilesDir() +File.separator +"Lists"); 
    System.out.println(file.getAbsolutePath());
    File lists[] = file.listFiles();
    String names[] = {};


    if(lists.length >0){

    for(int i = 0; i < lists.length; i ++){
        names[i] = lists[i].getName();
    }
    }else{
        names[0] = "Create New List";
    }

line of code in question according to the stacktrace (line 108)

if(lists.length >0){

StackTrace

03-25 04:37:16.981: E/AndroidRuntime(2099): Caused by: java.lang.NullPointerException
03-25 04:37:16.981: E/AndroidRuntime(2099):     at dev.shaw.MyShoppingPlanner.List_Activity.getListNames(List_Activity.java:108)
private List<String> myList = new ArrayList<String>();   

String root_sd = Environment.getExternalStorageDirectory().toString();
file = new File( root_sd + "/Lists" ) ;       
File list[] = file.listFiles();

for( int i=0; i< list.length; i++)
{
        myList.add( list[i].getName() );
}
try this one.

//use two boolean variables.
 File file;
boolean mExternalStorageAvailable = false;
boolean mExternalStorageWriteable = false;

//check if the sdcard is enable or disable in your device

String state = Environment.getExternalStorageState();

        if (Environment.MEDIA_MOUNTED.equals(state)) {
            mExternalStorageAvailable = mExternalStorageWriteable = true;
        } else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
            mExternalStorageAvailable = true;
            mExternalStorageWriteable = false;
        } else {
            mExternalStorageAvailable = mExternalStorageWriteable = false;
        }

    private String[] getListNames() {
 if (mExternalStorageAvailable) {
File path = new File(Environment.getExternalStorageDirectory().getAbsolutePath());
if (!path.exists()) {
path.mkdirs();
}                   
file=path.getAbsolutePath();

} 
else {
//use   ContextWrapper it a onw way to access internal storage.    
   ContextWrapper cw = new ContextWrapper(getApplicationContext());     
(or)
        //generates the file containing the list names
file = new File(this.getFilesDir() +File.separator +"Lists"); 
if (!file.exists()) {
file.mkdirs();
}
        System.out.println(file.getAbsolutePath());
   }

   File lists[] = file.listFiles();
     String names[] = {};                   
    try{
        if (lists.length==0)
    {
      System.out.print("There is no files in the Directory");
    }
      else{

        if(lists.length >0){

        for(int i = 0; i < lists.length; i ++){
            names[i] = lists[i].getName();
        }
        }else{
            names[0] = "Create New List";
        }
    catch(Exception e)
    {
    e.printStackTrace();
    }
    }

You need to log if files.getFileList() is really returning anything or not:

also

change this:

File lists[] = file.listFiles();
String names[] = {};


if(lists.length >0){

for(int i = 0; i < lists.length; i ++){
    names[i] = lists[i].getName();
}
}else{
    names[0] = "Create New List";
}

to

File lists[] = file.listFiles();
String names[] = {};

if(lists != null && lists.length >0){

for(int i = 0; i < lists.length; i ++){
    names[i] = lists[i].getName();
}
}else{
    names[0] = "Create New List";
}

PS: You cannot get the length if the lists array is null in the first place.!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM