我的代码非常标准.. sReport 包含我想输出到文本文件的文本,它包含几个“\n”换行符,可以在文本视图中很好地呈现,但在文本文件中它们不存在。一定有一些简单的东西我错过了..
try {
FileOutputStream fOut = new FileOutputStream(sDir + sFile);
//write
fOut.write( sReport.getBytes() );
// Close output stream
fOut.flush();
fOut.close();
} catch (IOException e) {
e.printStackTrace();
}