如何获取位于Apache Server中的文件列表并在Android活动页面中显示该列表?

时间:2015-08-14 06:59:43

标签: android

我尝试了以下代码......

String file_path="http://localhost:8080/HellowJSP/Files";
File[] fileNameList;

//inside On Create()
File f=new File(file_path);
fileNameList=f.listFiles();
String[] filelist=new String[fileNameList.length];

for(i=0;i<fileNameList.length;i++){
         filelist[i]=fileNameList[i].getName();
}

但我得到了NullPointerException。变量fileNameList results a null value。请帮我解决这个问题。

0 个答案:

没有答案