Java中,序列化及反序列化的底层原理( 二 )


● readObject方法从输入流(ObjectInputStream)中读出对象并保存赋值到 elementData数组中 。
至此,我们回答刚才提出的问题:如何自定义序列化和反序列化的策略?
答:可以在被序列化的类中增加writeObject和readObject方法 。
问题又来了:虽然ArrayList中写了writeObject和readObject方法,但是这两个方法并没有显式地被调用 。
如果一个类中包含writeObject和readObject 方法,那么这两个方法是怎么被调用的呢?
4.ObjectOutputStream对象的序列化过程是通过ObjectOutputStream和ObjectInputStream实现的,带着刚才的问题,我们分析一下ArrayList中的writeObject和readObject方法到底是如何被调用的 。
为了节省篇幅,这里给出ObjectOutputStream的writeObject的调用栈:
writeObject ---> writeObject0 --->writeOrdinaryObject--->writeSerialData--->invokeWriteObjectinvokeWriteObject 如下:void invokeWriteObject(Object obj, ObjectOutputStream out)throws IOException, UnsupportedOperationException{if (writeObjectMethod != null) {try {writeObjectMethod.invoke(obj, new Object[]{ out });} catch (InvocationTargetException ex) {Throwable th = ex.getTargetException();if (th instanceof IOException) {throw (IOException) th;} else {throwMiscException(th);}} catch (IllegalAccessException ex) {// should not occur,as access checks have been suppressedthrow new InternalError(ex);}} else {throw new UnsupportedOperationException();}}其中writeObjectMethod.invoke(obj, new Object[]{ out })是关键,通过反射的方式调用writeObjectMethod方法 。官方是这么解释这个writeObjectMethod的:
class-defined writeObject method, or null if none在我们的例子中,这个方法就是在ArrayList中定义的writeObject方法,通过反射的方式被调用了 。
至此,我们回答刚才提出的问题:如果一个类中包含writeObject和readObject方法,那么这两个方法是怎么被调用的呢?
答:在使用ObjectOutputStream的writeObject方法和ObjectInputStream的readObject方法时,会通过反射的方式调用 。
有的读者可能会提出这样的疑问:Serializable明明就是一个空的接口,它是怎么保证只有实现了该接口的方法才能进行序列化与反序列化的呢?
Serializable接口的定义如下:
public interface Serializable {}当尝试对一个未实现Serializable或者Externalizable接口的对象进行序列化时,会抛出
java.io.NotSerializableException异常 。
其实这个问题也很好回答,我们再回到刚才ObjectOutputStream的writeObject的调用栈:
writeObject0方法中有如下一段代码:
if (obj instanceof String) {writeString((String) obj, unshared);} else if (cl.isArray()) {writeArray(obj, desc, unshared);} else if (obj instanceof Enum) {writeEnum((Enum<?>) obj, desc, unshared);} else if (obj instanceof Serializable) {writeOrdinaryObject(obj, desc, unshared);} else {if (extendedDebugInfo) {throw new NotSerializableException(cl.getName() + "n" + debugInfoStack.toString());} else {throw new NotSerializableException(cl.getName());}}在进行序列化操作时,会判断要被序列化的类是否是Enum、Array和Serializable类型,如果不是则直接抛出NotSerializableException异常 。
小结(1)如果一个类想被序列化,则需要实现Serializable接口,否则将抛出NotSerializable-Exception异常,这是因为在序列化操作过程中会对类的类型进行检查,要求被序列化的类必须属于Enum、Array和Serializable类型中的任何一种 。
(2)在变量声明前加上关键字transient,可以阻止该变量被序列化到文件中 。
(3)在类中增加writeObject和readObject方法可以实现自定义的序列化策略 。
【Java中,序列化及反序列化的底层原理】 
内容摘自《深入理解Java核心技术》,作者是Hollis,张洪亮,阿里巴巴技术专家,51CTO 专栏作家,CSDN 博客专家,掘金优秀作者,《程序员的三门课》联合作者,《Java工程师成神之路》系列文章作者;热衷于分享计算机编程相关技术,博文全网阅读量数千万 。




推荐阅读