I am writing the data on the file and i am using ArrayList for it but my main problem is that how can i add the new line on the text file. Is it possible to do it.
In a such a way that when first data of ArrayList write on the text file than automatically in the new line next data of ArrayList should be write
 final String FILES = "/MY_FILE_FOLDER";
 String path= Environment.getExternalStorageDirectory().getPath()+FILES; // Folder path
 File folderFile = new File(path);
  if (!folderFile.exists()) {
    folderFile.mkdirs();
   }
 File myFile = new File(folderFile, fileName+".doc");
 myFile.createNewFile();
 FileOutputStream fOut = new FileOutputStream(myFile);
 OutputStreamWriter myOutWriter = new OutputStreamWriter(fOut);
 for (int i = 0; i < getdata.size(); i++) {
    myOutWriter.append(getdata.get(i)); 
 }
 myOutWriter.close();
 fOut.close();
 Toast.makeText(getBaseContext(),
        "Done writing SD 'mysdfile.txt'",
        Toast.LENGTH_SHORT).show();
                Add Line Breaks to a TextView Just add a \n to your text. This can be done directly in your layout file, or in a string resource and will cleanly break the text in your TextView to the next line.
To start a new line of text or add spacing between lines or paragraphs of text in a worksheet cell, press Alt+Enter to insert a line break.
\n - Inserts newline.
Change,
for (int i = 0; i < getdata.size(); i++) {
    myOutWriter.append(getdata.get(i)); 
}
to
for (int i = 0; i < getdata.size(); i++) {
    myOutWriter.append(getdata.get(i)); 
    myOutWriter.append("\n\r");
}
I Hope this helps!!
Try in this way,
FileOutputStream fOut = new FileOutputStream(myFile);
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fOut));
  for (int i = 0; i < getdata.size(); i++) {
    bw.write(getdata.get(i));
    bw.newLine();
  }
bw.close();
fOut.close();
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With