解析txt后放入list中,太初级了。。

File file = new File("test.txt");
BufferedReader reader = null;
try {
String string = null;
reader = new BufferedReader(new FileReader(file));
while((string = reader.readLine())!=null){
String[] s = string.split(","); //以逗号分隔字符串,注意你的逗号是英文的逗号还是中文的逗号。
Student student = new Student(s[0],s[1],s[2]); s[] 分别是姓名,性别,和年龄 初始化一个student对象,然后加入到list中去。
list.add(student);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

你可能感兴趣的:(解析txt后放入list中,太初级了。。)