如何在Java FileOutputStream中写换行
我想用FileOutputStream
; 换行 我已经尝试了以下方法,但是没有一个起作用:
encfileout.write('\n');encfileout.write("\n".getbytes());
encfileout.write(System.getProperty("line.separator").getBytes());
回答:
可能是查看器出现问题…尝试在EditPlus或Notepad
++中打开文件。Windows记事本可能无法识别其他操作系统的换行符。您现在在哪个程序中查看文件?
以上是 如何在Java FileOutputStream中写换行 的全部内容, 来源链接: utcz.com/qa/431172.html