大家好,我正在使用此代码在 txt 文件中附加文本。任何人都可以指导我如何为这种情况添加换行符
fOut = new FileOutputStream(new File(myFilePath + BlueFreeConstants.logFileName), true);
osw = new OutputStreamWriter(fOut);
osw.append("<< " + values + " >>");
osw.flush();
osw.close();
fOut.close();
大家好,我正在使用此代码在 txt 文件中附加文本。任何人都可以指导我如何为这种情况添加换行符
fOut = new FileOutputStream(new File(myFilePath + BlueFreeConstants.logFileName), true);
osw = new OutputStreamWriter(fOut);
osw.append("<< " + values + " >>");
osw.flush();
osw.close();
fOut.close();
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();
osw.append('\n')
. 那是你要找的吗?
osw.append("<<"+values+">>\n");
这是我创建多行文本文件的代码:
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) {}