为了账号安全,请及时绑定邮箱和手机立即绑定

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

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 回答

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

0 回复 有任何疑惑可以回复我~
#1

lynhao 提问者

打错了 是输入内容,我知道中文会乱码,我其实是想问放进去的内容如何分行
2015-05-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信