Skip to content

Instantly share code, notes, and snippets.

@jhjwind
Created August 23, 2011 02:12
Show Gist options
  • Save jhjwind/1164156 to your computer and use it in GitHub Desktop.
Save jhjwind/1164156 to your computer and use it in GitHub Desktop.
write file
import java.io.FileWriter
val fw = new FileWriter(outputFilename, true)
try{
fw.write(w.toString)
} finally{
fw.close
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment