MCPcopy Index your code
hub / github.com/processing/processing / saveStrings

Method saveStrings

core/src/processing/core/PApplet.java:7922–7924  ·  view source on GitHub ↗

( begin auto-generated from saveStrings.xml ) Writes an array of strings to a file, one line per string. This file is saved to the sketch's folder, which is opened by selecting "Show sketch folder" from the "Sketch" menu. It is not possible to use saveXxxxx() functions inside a web bro

(String filename, String data[])

Source from the content-addressed store, hash-verified

7920 * @see PApplet#saveBytes(String, byte[])
7921 */
7922 public void saveStrings(String filename, String data[]) {
7923 saveStrings(saveFile(filename), data);
7924 }
7925
7926
7927 /**

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