问大家一段代码,代码如下,目的是写入三行文字

来源:6-2 transient及ArrayList源码分析

lynhao

2015-05-23 10:22

public void writeFile()throws IOException
{
int i =1;
while(i<4)
{
System.out.println("请输入内容");
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
byte[] b = str.getBytes();
//String newline = System.getProperty("line.separator");
FileOutputStream out = new FileOutputStream("/Users/a/Documents/workspace/I.O/src/a.txt",true);
//out.write(newline.getBytes());
out.write(b);
//System.out.println();
out.flush();
out.close();
++i;



}
}
public static void main(String[] args)
{
try{
new Exam1().writeFile();
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
}

写回答 关注

1回答

  • 好帮手慕珊
    2015-05-25 10:27:31

    是问这段代码有没有问题吗,你这样写进去的文字应该是乱码吧

    lynhao

    打错了 是输入内容,我知道中文会乱码,我其实是想问放进去的内容如何分行

    2015-05-25 15:29:20

    共 1 条回复 >

文件传输基础——Java IO流

为您介绍IO流的使用,以及对象的序列化和反序列化的内容

133755 学习 · 1030 问题

查看课程

相似问题