将换行符写入文件
考虑以下功能
private static void GetText(String nodeValue) throws IOException {
if(!file3.exists()) {
file3.createNewFile();
}
FileOutputStream fop=new FileOutputStream(file3,true);
if(nodeValue!=null)
fop.write(nodeValue.getBytes());
fop.flush();
fop.close();
}
要添加什么才能使其每次在下一行中写入?
例如,我希望给定字符串的每个单词都在单独的 lline 中,例如:
i am mostafa
写为:
i
am
mostafa