Mercurial Hosting > luan
view src/goodjava/io/DataOutputStream.java @ 2115:5b434c8a27bd ssltesting tip
disable hardcoded dry_run = false
| author | Violet7 |
|---|---|
| date | Mon, 22 Dec 2025 18:54:30 -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); } }
