MCPcopy Create free account
hub / github.com/ReadyTalk/avian / writeUTF

Method writeUTF

classpath/java/io/DataOutputStream.java:94–98  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

92 }
93
94 public void writeUTF(String s) throws IOException {
95 byte[] bytes = s.getBytes("UTF-8");
96 writeShort((short)bytes.length);
97 out.write(bytes);
98 }
99}

Callers

nothing calls this directly

Calls 3

writeShortMethod · 0.95
getBytesMethod · 0.80
writeMethod · 0.65

Tested by

no test coverage detected