Java顯示目錄中的所有文件
如何顯示所有目錄中的所有文件?
解決方法
下麵的示例演示如何顯示所有使用File類的list()方法列出包含一個目錄中的所有文件。
import java.io.*; class Main { public static void main(String[] args) { File dir = new File("C:"); String[] children = dir.list(); if (children == null) { System.out.println( "Either dir does not exist or is not a directory"); } 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