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). Starting with Processing release 0134, all files loa
(String filename)
| 6206 | * @see BufferedReader |
| 6207 | */ |
| 6208 | public PrintWriter createWriter(String filename) { |
| 6209 | return createWriter(saveFile(filename)); |
| 6210 | } |
| 6211 | |
| 6212 | |
| 6213 | /** |