4

大家好,我正在使用此代码在 txt 文件中附加文本。任何人都可以指导我如何为这种情况添加换行符

fOut = new FileOutputStream(new File(myFilePath + BlueFreeConstants.logFileName), true);
osw = new OutputStreamWriter(fOut);
osw.append("<< " + values + " >>");
osw.flush();
osw.close();
fOut.close();
4

4 回答 4

13
String separator = System.getProperty("line.separator");
fOut = new FileOutputStream(new File(myFilePath + BlueFreeConstants.logFileName), true);
osw = new OutputStreamWriter(fOut);
osw.append("<< " + values + " >>");
osw.append(separator); // this will add new line ;
osw.flush();
osw.close();
fOut.close();
于 2012-07-18T11:46:10.470 回答
2

osw.append('\n'). 那是你要找的吗?

于 2012-07-18T11:44:06.077 回答
2
osw.append("<<"+values+">>\n");
于 2012-07-18T11:44:22.267 回答
1

这是我创建多行文本文件的代码:

FileOutputStream fos=null;
    OutputStreamWriter osw;
    try {
    fos = openFileOutput("login.txt",Context.MODE_PRIVATE);
    fos.write(("Line One").getBytes());
    osw = new OutputStreamWriter(fos);
    osw.append("\r\n");
    osw.append("Line Two");
    osw.flush();
    osw.close();
    fos.flush();
    fos.close();
} catch (Exception e) {}
于 2013-08-07T22:20:37.013 回答