@禹爸爸
java.io.FileOutputStream.write(byte[] b, int off, int len)
Parameters:
b the data.
off the start offset in the data.
len the number of bytes to write.
java.io.FileOutputStream.write(byte[] b, int off, int len)
Parameters:
b the data.
off the start offset in the data.
len the number of bytes to write.
2016-05-19
最赞回答 / 青春因你而精彩
例如输入一个int类型的数据,这种类型的数据占据了4个字节(00000000 0000000 00000000 00000000)(从左向右:高—>地)存储格式 而write中()方法一次性的只能写进去8位,即一个字节(00000000),故此从高位至地位一次写入,写四次。 不太懂你到底想要知道什么?按自己理解的说的,不足勿怪。
2016-05-19
最赞回答 / Jarly杰
在序列化过程中,如果被序列化的类中定义了writeObject 和 readObject 方法,虚拟机会试图调用对象类里的 writeObject 和 readObject 方法,进行用户自定义的序列化和反序列化。如果没有这样的方法,则默认调用是 ObjectOutputStream 的 defaultWriteObject 方法以及 ObjectInputStream 的 defaultReadObject 方法。用户自定义的 writeObject 和 readObject 方法可以允许用户控制序列化...
2016-05-19