摘要: public static List getFileList(String strPath) { File dir = new File(strPath); File[] files = dir.listFiles(); // 该文件目录下文件全部放入数组 if (files != null) { for (int i = ... 阅读全文
posted @ 2017-10-27 14:51 yaoh371 阅读(290) 评论(0) 推荐(0) 编辑