列出路径名存储在字符串变量path中的目录中的每个文件的名称
/* 来自 nowjava.com - 时 代 Java*/ import java.io.File; import java.io.IOException; public class Main { public static void main(String[] arg) throws IOException { String path = "c:/test"; File dir = new File(path); if (dir.isDirectory()) { File[] files = dir.listFiles(); for (File f : files) System.out.println(f.getName()); } } }