IO——使用键盘输入多个学生的信息
使用键盘输入多个学生的信息,并将这些学生的信息保存到模块的1.txt文件中;
要求:
1:学生信息包含姓名、年龄(用一行字符串表示即可,无需创建学生对象);
2:每个学生信息占一行,学生信息之间使用逗号分隔;
3:至少输入3个学生信息;
效果
参考代码:
public class Demo5 {
public static void main(String[] args) throws IOException {
Scanner scanner = new Scanner(System.in);
FileOutputStream fos = new FileOutputStream("test02\\1.txt");
for (int i = 1; true; i++) {
System.out.println("请输入第" + i + "个学生的姓名和年龄,学生信息之间使用逗号分隔(ok表示结束):");
String s = scanner.next();
if (s.equalsIgnoreCase("ok")) {
System.out.println("byebye");
break;
}
fos.write((s+"\r\n").getBytes());
}
fos.close();
}
}