Mercurial Hosting > luan
view src/goodjava/io/DataOutputStream.java @ 2063:dc942f39310e
add instructions to install python
| author | Violet7 |
|---|---|
| date | Sat, 15 Nov 2025 17:49:44 -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); } }
