我試圖從EditText保存文本,我知道它的工作原理,但我認爲我沒有正確地做到這一點。當我在應用程序中重新打開它時很好,但是當我將它從設備中拉出並在Windows記事本中打開時,我失去了換行符。保存來自EditText的文本
...
try {
BufferedWriter buf = new BufferedWriter(new FileWriter(file, true));
buf.append(cv.getText().toString());
buf.close();
} catch(IOException e) {
e.printStackTrace();
}
什麼是正確的方式來保存大EditText的全文?
當Unix使用'\ n'時,Windows使用'\ r \ n'作爲換行符。 – 2012-02-21 01:27:04