Skip to content Skip to sidebar Skip to footer

Create Enter (new Line) Automaticly Text File In Android

I made a create file app in android, I want to write a string variable to file.txt, and it should automatically insert an enter (navigate to new line) I used: public void cekFile()

Solution 1:

Use the fw.newLine() method before or after the fw.write() method.


Post a Comment for "Create Enter (new Line) Automaticly Text File In Android"