こんにちはすべて私はこのコードを使用してtxtファイルにテキストを追加しています。誰でもこの場合に改行を追加する方法を教えてくれます
fOut = new FileOutputStream(new File(myFilePath + BlueFreeConstants.logFileName), true);
osw = new OutputStreamWriter(fOut);
osw.append("<< " + values + " >>");
osw.flush();
osw.close();
fOut.close();