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();