SyntaxFix
Write A Post
Hire A Developer
Questions
Try using FileUtils.write from Apache Commons.
FileUtils.write
You should be able to do something like:
File f = new File("output.txt"); FileUtils.writeStringToFile(f, document.outerHtml(), "UTF-8");
This will create the file if it does not exist.