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

Method readUTF

classpath/java/io/DataInputStream.java:99–104  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

97 }
98
99 public String readUTF() throws IOException {
100 int length = readUnsignedShort();
101 byte[] bytes = new byte[length];
102 readFully(bytes);
103 return new String(bytes, "UTF-8");
104 }
105
106 @Deprecated
107 public String readLine() throws IOException {

Callers

nothing calls this directly

Calls 2

readUnsignedShortMethod · 0.95
readFullyMethod · 0.95

Tested by

no test coverage detected