以下实例演示了如何使用 File 类的 list 方法来输出指定目录下的所有文件:
class Main { public static void main(String[] args) { File dir = new File("C:"); String[] children = dir.list(); if (children == null) { System.out.println( "目录不存在或它不是一个目录"); } else { for (int i=0; i< children.length; i++) { String filename = children[i]; System.out.println(filename); } } } }
以上代码运行输出结果为:
build build.xml destnfile detnfile filename manifest.mf nbproject outfilename src srcfile test
在线实例
字符集 & 工具
最新更新
站点信息
关注我们