我有几个字符串:a,b,c,d,e。我想将它们作为单个字符串保存到文件 FILENAME 中
a b c d:e
。问题 - 我需要保留d;e
从新行开始的信息。
String str = a
+ " "
+ b
+ c
+ "\n "
+ d
+ ";"
+ e + "\r\n";
try {
fos = openFileOutput(FILENAME, Context.MODE_APPEND);
fos.write(str.getBytes());
fos.flush();
fos.close();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}