Mercurial Hosting > luan
view src/goodjava/io/DataOutputStream.java @ 1630:b735ed134662
add nginx and ssl for host
author | fffilimonov |
---|---|
date | Fri, 10 Dec 2021 17:08:17 +0000 |
parents | aaac1d29edea |
children |
line wrap: on
line source
package goodjava.io; import java.io.OutputStream; import java.io.IOException; import java.nio.charset.StandardCharsets; public class DataOutputStream extends java.io.DataOutputStream { public DataOutputStream(OutputStream out) { super(out); } public void writeString(String s) throws IOException { byte[] a = s.getBytes(StandardCharsets.UTF_8); writeInt(a.length); write(a); } }