查询某文件夹下所有.class文件
摘要:
public class TestDemo{ public static void main(String[] args) { //封装目录 File file=new File("d:\\testdemo"); //递归 getDir(file); } public static void getDir(File file){ File[] fileArray=file.... 阅读全文
posted @ 2016-10-20 00:30 明天的我 阅读(287) 评论(0) 推荐(0) 编辑