浏览 1013 次
锁定老帖子 主题:IO操作_文件读取
该帖已经被评为隐藏帖
|
|
---|---|
作者 | 正文 |
发表时间:2010-01-27
最后修改:2010-01-27
import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class FileTool { public static List readFile2List(String filePath){ List<String> fileContentList = new ArrayList<String>(); BufferedReader buf = null; try { buf = new BufferedReader(new FileReader(filePath)); while(buf.ready()){ fileContentList.add(buf.readLine()); } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }finally{ try { buf.close(); } catch (IOException e) { e.printStackTrace(); } } return fileContentList; } private static void printStrList(List list){ if(list!=null){ for(int i=0;i<list.size();i++){ System.out.println((String)list.get(i)); } } } public static void main(String[] args){ String path = "E:/switchLog/release.txt"; List contentList = readFile2List(path); printStrList(contentList); } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |