1、掌握对象序列化的作用
2、掌握Serializable 接口的作用
3、可以使用ObjectOutputStream 进行对象序列化操作
4、可以使用ObjectInputStream 进行对象的反序列化操作
5、掌握Externalizable 接口的作用及与Serializable 接口的实现区别
6、掌握transient 关键字的作用
7、可以序列化一组对象
1、什么对象序列化
一个对象产生之后实际上是在内存中为其开辟了一个在存储空间,方便存储信息。
一个类不能平白无故的被序列化。
但是,在此接口中没有任何一个方法,此接口属于一个标识接口,表示具备了某种能力。
例如:现在定义一个类,此类可以被序列化
定义可序列化的类
- import java.io.Serializable ;
- public class Person implements Serializable{
- private String name ;
- private int age ;
- public Person(String name,int age){
- this.name = name ;
- this.age = age ;
- }
- public String toString(){
- return "姓名:" + this.name + ";年龄:" + this.age ;
- }
- };
以后此类的对象,就可以被序列化了。变为二进制byte 流。
但是在进行序列化或反序列化操作的时候,对于不同的 JDK 版本,实际上会出现版本的兼容问题。
- import java.io.Serializable ;
- public class Person implements Serializable{
- private static final long serialVersionUID = 1l;
- private String name ;
- private int age ;
- public Person(String name,int age){
- this.name = name ;
- this.age = age ;
- }
- public String toString(){
- return "姓名:" + this.name + ";年龄:" + this.age ;
- }
- };
private static final long serialVersionUID = 1l;
如果使用开发工具开发 ,没有编写此代码,则会出现一些安全警告的信息。
2、对象的序列化及反序列化操作
对象序列化依靠ObjectOutputStream 对象反序列化依靠ObjectInputStream.
2.1 序列化:ObjectOutStream
- import java.io.File ;
- import java.io.FileOutputStream ;
- import java.io.OutputStream ;
- import java.io.ObjectOutputStream ;
- public class SerDemo01{
- public static void main(String args[]) throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectOutputStream oos = null ;
- OutputStream out = new FileOutputStream(f) ;
- oos = new ObjectOutputStream(out) ;
- oos.writeObject(new Person("张三",30)) ;
- oos.close() ;
- }
- };
到底序列化了那些东西呢?
所有的对象拥有各自的属性值,但是所有的方法都是公共的,所以序列化对象的时候实际上序列化的就是属性。
2.2 反序列化:ObjectInputStream
- import java.io.File ;
- import java.io.FileInputStream ;
- import java.io.InputStream ;
- import java.io.ObjectInputStream ;
- public class SerDemo02{
- public static void main(String args[]) throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectInputStream ois = null ;
- InputStream input = new FileInputStream(f) ;
- ois = new ObjectInputStream(input) ;
- Object obj = ois.readObject() ;
- ois.close() ;
- System.out.println(obj) ;
- }
- };
问题:
如果一个类实现了Serializable 接口,则肯定此类可以被序列化下来,那么也就意味着此类多了一项功能,可以被序列化,那么让所有的类都实现此接口是不是更好啊?
因为JDK是会不断升级的,现在Serializable 接口中没有任何定义,那么以后呢?
3、Externalizable 接口
使用Serilizable 接口可以方便的序列化一个对象,但是在序列化操作中也提供了另外一种序列化机制——Externalizable 接口。
定义:
public interface Externalizable
extends
Serializable
方法:
写入:void writeExternal(ObjectOutput out)throws IOException
读取:void readExternal(ObjectInput in)throws IOException,ClassNotFoundException
利用此接口修改之前的程序
- import java.io.Externalizable ;
- public class Person implements Externalizable{
- private static final long serialVersionUID = 1l;
- private String name ;
- private int age ;
- public Person(String name,int age){
- this.name = name ;
- this.age = age ;
- }
- public String toString(){
- return "姓名:" + this.name + ";年龄:" + this.age ;
- }
- public void writeExternal(ObjectOutput out) throws IOException{
- out.writeObject(this.name);
- out.writeInt(this.age);
- }
- public void readExternal(ObjectInput in) throws IOException,ClassNotFoundException{
- this.name = in.readObject();
- this.age = in.readInt();
- }
- };
为了方便测试,现在将,现在序列化及反序列化操作形成方法调用的形式。
- import java.io.File ;
- import java.io.IOException ;
- import java.io.FileOutputStream ;
- import java.io.OutputStream ;
- import java.io.ObjectOutputStream ;
- import java.io.FileInputStream ;
- import java.io.InputStream ;
- import java.io.ObjectInputStream ;
- public class SerDemo03{
- public static void main(String args[]) throws Exception{
-
- dser() ;
- }
- public static void ser() throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectOutputStream oos = null ;
- OutputStream out = new FileOutputStream(f) ;
- oos = new ObjectOutputStream(out) ;
- oos.writeObject(new Person("张三",30)) ;
- oos.close() ;
- }
- public static void dser() throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectInputStream ois = null ;
- InputStream input = new FileInputStream(f) ;
- ois = new ObjectInputStream(input) ;
- Object obj = ois.readObject() ;
- ois.close() ;
- System.out.println(obj) ;
- }
- };
以上程序执行的时候出现了一个错误:
在使用Externalizable 接口的时候需要在被序列化的类中定义一个无参构造,因为此接口在进行反序列化的时候,会先使用类中的无参构造方法为其进行实例化,之后再将内容分别设置到属性之中,修改Person 类:
- import java.io.Externalizable;
- import java.io.*;
- public class Person implements Externalizable{
- private static final long serialVersionUID = 1L;
- private String name;
- private int age;
- public Person(){}
- public Person(String name, int age){
- this.name = name;
- this.age = age;
- }
- public String toString(){
- return "姓名:" + this.name + ":年龄:" + this.age;
- }
- public void writeExternal(ObjectOutput out)
- throws IOException{
- out.writeObject(this.name);
- out.writeInt(this.age);
- }
- public void readExternal(ObjectInput in)
- throws IOException, ClassNotFoundException{
- this.name = (String)in.readObject();
- this.age = in.readInt();
- }
- }
在开发中使用Serialzable 接口是最多的。而Externalizable 接口基本上是不会出现的。
在序列化操作的时候,如果某个属性不希望被序列化下来,则可以直接使用transient 关键字声明。
- import java.io.Serializable ;
- public class Person implements Serializable{
- private String name ;
- private int age ;
- public Person(String name,int age){
- this.name = name ;
- this.age = age ;
- }
- public String toString(){
- return "姓名:" + this.name + ";年龄:" + this.age ;
- }
- };
操作代码:
- import java.io.File ;
- import java.io.IOException ;
- import java.io.FileOutputStream ;
- import java.io.OutputStream ;
- import java.io.ObjectOutputStream ;
- import java.io.FileInputStream ;
- import java.io.InputStream ;
- import java.io.ObjectInputStream ;
- public class SerDemo04{
- public static void main(String args[]) throws Exception{
- ser() ;
- dser() ;
- }
- public static void ser() throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectOutputStream oos = null ;
- OutputStream out = new FileOutputStream(f) ;
- oos = new ObjectOutputStream(out) ;
- oos.writeObject(new Person("张三",30)) ;
- oos.close() ;
- }
- public static void dser() throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectInputStream ois = null ;
- InputStream input = new FileInputStream(f) ;
- ois = new ObjectInputStream(input) ;
- Object obj = ois.readObject() ;
- ois.close() ;
- System.out.println(obj) ;
- }
- };
transient + Serilizable 接口完全可以取代Externalizable 接口的功能。
5、序列化一组对象
如果要保存多个对象,则最好使用对象数组的形式完成。
- import java.io.File ;
- import java.io.IOException ;
- import java.io.FileOutputStream ;
- import java.io.OutputStream ;
- import java.io.ObjectOutputStream ;
- import java.io.FileInputStream ;
- import java.io.InputStream ;
- import java.io.ObjectInputStream ;
- public class SerDemo05{
- public static void main(String args[]) throws Exception{
- Person per[] = {new Person("张三",30),new Person("李四",31),
- new Person("王五",32)} ;
- ser(per) ;
- Object o[] = (Object[])dser() ;
- for(int i=0;i<o.length;i++){
- Person p = (Person)o[i] ;
- System.out.println(p) ;
- }
- }
- public static void ser(Object obj[]) throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectOutputStream oos = null ;
- OutputStream out = new FileOutputStream(f) ;
- oos = new ObjectOutputStream(out) ;
- oos.writeObject(obj) ;
- oos.close() ;
- }
- public static Object[] dser() throws Exception {
- File f = new File("D:" + File.separator + "test.txt") ;
- ObjectInputStream ois = null ;
- InputStream input = new FileInputStream(f) ;
- ois = new ObjectInputStream(input) ;
- Object obj[] = (Object[])ois.readObject() ;
- ois.close() ;
- return obj ;
- }
- };
问题:保存的数据有限,所以为了解决这样的问题,Java 中引入了类集 框架解决数组的存储限制问题。
总结:
1、对象序列化的作用,对象序列化并不一定都向文件中保存,也有可能面向于其他的输入或输出
2、被序列化的对象的类必须实现Serializable 接口,如果某个属性不希望被保存下来,则可以使用transient 关键字声明。
3、ObjectOutputStream 序列化对象,ObjectInputStream 反序列化对象
4、Externalizable 接口作用: 开发人员手式实现序列化的操作
5、使用序列化保存一组对象的时候要使用对象数组的形式操作