( begin auto-generated from createWriter.xml ) Creates a new file in the sketch folder, and a PrintWriter object to write to it. For the file to be made correctly, it should be flushed and must be closed with its flush() and close() methods (see above example). Star
(String filename)
| 6985 | * @see BufferedReader |
| 6986 | */ |
| 6987 | public PrintWriter createWriter(String filename) { |
| 6988 | return createWriter(saveFile(filename)); |
| 6989 | } |
| 6990 | |
| 6991 | |
| 6992 | /** |