How can I save a string in a text file?
How can I save a String in a text file using Java? Anonymous User 2092 04 Oct 2013 How can I save a string in a text file?
If you're simply outputting text, rather than any binary data, the following will work:
Then, write your String to it, just like you would to any output stream:
You'll need exception handling, as ever. Be sure to call out.close() when you've finished writing.
Edit: further simplified per Jonik's comments.