摘要: 按alt + shift + a,按两次就好了 阅读全文
posted @ 2014-03-13 22:25 lxricecream 阅读(106) 评论(0) 推荐(0)
摘要: import java.io.File;public class SearchFileTestDriver { public static void main(String[] args) { File file = new File("E:\\atm"); searchFiles(file, 0); } public static void searchFiles(File file, int level){ if(file != null && file.exists() && file.isDirectory()){ System.ou 阅读全文
posted @ 2014-03-13 20:11 lxricecream 阅读(261) 评论(0) 推荐(0)