我看到了类似的 issie
但它没有帮助我,这是我的代码
try {
String StringBudy =String.format(mailBuddy,System.getProperty("line.separator"));
FileOutputStream fOut = openFileOutput("My_Sms.txt",
MODE_WORLD_READABLE);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
osw.write(StringBudy);
osw.flush();
osw.close();
} catch (IOException ioe) {
ioe.printStackTrace();
}
任何想法为什么字符串中的换行符不写入文件?