Mercurial Hosting > luan
view src/goodjava/io/DataOutputStream.java @ 2147:515e892cd4c2 nginx_decoupled tip
set nginx error log; rename luanhost_controller
| author | Violet7 |
|---|---|
| date | Wed, 21 Jan 2026 21:57:07 -0800 |
| 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); } }
