Java.io.File.list()方法实例
java.io.File.list() 返回的文件和目录在此抽象路径名指定的目录中的数组。如果抽象路径名不表示一个目录,该方法返回null。
声明
以下是java.io.File.list()方法的声明:
public String[] list()
参数
-
NA
返回值
该方法在表示此抽象路径名的目录中返回的文件和目录的数组。
异常
-
SecurityException -- 如果安全管理器存在并且其SecurityManager.checkRead(java.lang.String) 方法拒绝对文件的读访问
例子
下面的示例演示java.io.File.list()方法的用法。
package com.yiibai; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; String[] paths; try{ // create new file f = new File("c:/test"); // array of files and directory paths = f.list(); // for each name in the path array for(String path:paths) { // prints filename and directory name System.out.println(path); } }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
child_test child_test.txt