dos.writeInt(10);
dos.writeInt(-10);
dos.writeLong(10l);
dos.writeDouble(10.5);
//采用utf-8编码写入中国
dos.writeUTF("中国");
//utf-16be
dos.writeChars("中国");
00 06 ---> 这两字节表示的是字符串s占6个字节
e4 b8 ad e5 9b bd --->"中国"的utf-8编码
4e 2d 56 fd --->"中国"的utf-16be编码