3839404142434445464748
out.writeBoolean(false); out.writeByte((byte) 1); out.writeShort((short) -1); out.writeInt(-1); out.writeVInt(2); out.writeLong(-3); out.writeVLong(4); out.writeFloat(1.1f); out.writeDouble(2.2); out.writeUTF("hello"); out.writeUTF("goodbye");
265266267268269270271272273274275
out.writeBoolean(false); out.writeByte((byte)1); out.writeShort((short)-1); out.writeInt(-1); out.writeVInt(2); out.writeLong(-3); out.writeVLong(4); out.writeFloat(1.1f); out.writeDouble(2.2); int[] intArray = {1, 2, 3}; out.writeGenericValue(intArray);