How do I save a String to a text file using Java?

If you’re simply outputting text, rather than any binary data, the following will work: PrintWriter out = new PrintWriter(“filename.txt”); 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. If you are using Java 7 or later, you … Read more