202203204205206207208209210
public void writeShort(short s) throws IncompatibleModeException, IOException { if (_mode != WRITE_MODE) throw new IncompatibleModeException(); _outputStream.writeShort(s); }
211212213214215216217218219
public void writeUTFString(String s) throws IncompatibleModeException, IOException { if (_mode != WRITE_MODE) throw new IncompatibleModeException(); _outputStream.writeUTF(s); }