摘要: public static List readfile(String filepath) throws FileNotFoundException, IOException { List list = new ArrayList(); try { File file = new File(filepath); if (!file.isDirectory()) { System.out.println("path=" + file.getPath()); System.out.println("absolutepath=" + file.getAbsolu 阅读全文
posted @ 2013-10-28 16:53 cuifc 阅读(284) 评论(0) 推荐(0)