Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
writeShort
Method · 0.95
getBytes
Method · 0.80
write
Method · 0.65
Tested by
no test coverage detected