论坛首页 Java企业应用论坛

IO操作_文件读取

浏览 1013 次
该帖已经被评为隐藏帖
作者 正文
   发表时间:2010-01-27   最后修改:2010-01-27
import java.io.BufferedReader;
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);

}
}
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics