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

Method writeUTF

core/src/processing/data/Table.java:1600–1608  ·  view source on GitHub ↗
(OutputStream output, String... lines)

Source from the content-addressed store, hash-verified

1598 static Charset utf8;
1599
1600 static void writeUTF(OutputStream output, String... lines) throws IOException {
1601 if (utf8 == null) {
1602 utf8 = Charset.forName("UTF-8");
1603 }
1604 for (String str : lines) {
1605 output.write(str.getBytes(utf8));
1606 output.write('\n');
1607 }
1608 }
1609
1610
1611 protected void saveBinary(OutputStream os) throws IOException {

Callers 8

saveODSMethod · 0.95
saveStringODSMethod · 0.95
saveNumberODSMethod · 0.95
saveMethod · 0.80
saveBinaryMethod · 0.80
writeMethod · 0.80
convertBasicMethod · 0.80
convertRowMethod · 0.80

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected