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

Method writeUTF

classpath/java/io/ObjectOutputStream.java:159–163  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

157 }
158
159 public void writeUTF(String s) throws IOException {
160 byte[] bytes = s.getBytes();
161 int length = bytes.length;
162 blockData(new int[] { length >> 8, length }, bytes, null);
163 }
164
165 private int classHandle;
166

Callers 1

mainMethod · 0.95

Calls 2

blockDataMethod · 0.95
getBytesMethod · 0.80

Tested by 1

mainMethod · 0.76