JAVA 序列化

以下是资料介绍,如需要完整的请充值下载. 本资料已审核过,确保内容和网页里介绍一致.  
无需注册登录,支付后按照提示操作即可获取该资料.
资料介绍:

JAVA 序列化(含外文出处)(中文4500字,英文2600字)
作者姓名:Joshua Bloch
文章出处:《Effective JAVA
摘要:文本简要的介绍了JAVA序列化的概念,并将这些抽象概念以简易明了的语句阐明清楚,讲解深入浅出,内容系统全面。
关键字:序列化 类型 对象序列化 接口
1 JSP+JAVABeans+Servlet
对象序列化是一个提供将对象编码成字节流,并从字节流编码中重新构建对象的框架,包括以下两个过程:
序列化:将对象编码成字节流。
反序列化:从字节流编码中重新构建对象。

Chapter 10. Serialization
This chapter concerns the object serialization API, which provides a framework for encodingobjects as byte streams and reconstructing objects from their byte-stream encodings.Encoding an object as a byte stream is known as serializing the object; the reverse process is known as deserializing it. Once an object has been serialized, its encoding can be transmittedfrom one running virtual machine to another or stored on disk for later deserialization.Serialization provides the standard wire-level object representation for remotecommunication, and the standard persistent data format for the JAVABeans™ componentarchitecture.