Mercurial Hosting > luan
view src/goodjava/io/DataOutputStream.java @ 1758:27a2530f04b6
fix reload nginx from startup script
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Mon, 20 Feb 2023 09:02:20 +0200 |
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); } }