MCPcopy Index your code
hub / github.com/benfry/processing4 / saveStrings

Method saveStrings

core/src/processing/core/PApplet.java:7133–7135  ·  view source on GitHub ↗

Writes an array of Strings to a file, one line per String. By default, this file is saved to the sketch's folder. This folder is opened by selecting "Show Sketch Folder" from the "Sketch" menu. Alternatively, the file can be saved to any location on the computer by using an absolute pat

(String filename, String[] data)

Source from the content-addressed store, hash-verified

7131 * @see PApplet#saveBytes(String, byte[])
7132 */
7133 public void saveStrings(String filename, String[] data) {
7134 saveStrings(saveFile(filename), data);
7135 }
7136
7137
7138 /**

Callers

nothing calls this directly

Calls 6

saveFileMethod · 0.95
createOutputMethod · 0.95
createWriterMethod · 0.95
printlnMethod · 0.45
flushMethod · 0.45
closeMethod · 0.45

Tested by

no test coverage detected