{$cfg_webname}
主页 > 外文翻译 > 计算机翻译 >

JAVA 序列化

来源:wenku7.com  资料编号:WK712157 资料等级:★★★★★ %E8%B5%84%E6%96%99%E7%BC%96%E5%8F%B7%EF%BC%9AWK712157
以下是资料介绍,如需要完整的请充值下载。
1.无需注册登录,支付后按照提示操作即可获取该资料.
2.资料以网页介绍的为准,下载后不会有水印.资料仅供学习参考之用. 帮助
资料介绍

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.
 

推荐资料