Skip to content

Instantly share code, notes, and snippets.

@flox1an
Created December 13, 2013 12:14
Show Gist options
  • Save flox1an/7943421 to your computer and use it in GitHub Desktop.
Save flox1an/7943421 to your computer and use it in GitHub Desktop.
Writing local files from the Javascript Console
var FileUtils = Packages.org.apache.commons.io.FileUtils;
var outFile = new Packages.java.io.File("/tmp/output.txt");
FileUtils.writeStringToFile(outFile, "Hello World!", "UTF-8");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment