java对象序列化(二)

首先了解一下java序列化与反序列化的作用:


引用
   序列化是什么:
序列化就是将一个对象的状态(各个属性量)保存起来,然后在适当的时候再获得。
序列化分为两大部分:序列化和反序列化。序列化是这个过程的第一部分,将数据分解成字节流,以便存储在文件中或在网络上传输。反序列化就是打开字节流并重构对象。对象序列化不仅要将基本数据类型转换成字节表示,有时还要恢复数据。恢复数据要求有恢复数据的对象实例
    序列化的什么特点:
如果某个类能够被序列化,其子类也可以被序列化。声明为static和transient类型的成员数据不能被序列化。因为static代表类的状态, transient代表对象的临时数据。
    什么时候使用序列化:
        一:对象序列化可以实现分布式对象。主要应用例如:RMI要利用对象序列化运行远程主机上的服务,就像在本地机上运行对象时一样。
        二:java对象序列化不仅保留一个对象的数据,而且递归保存对象引用的每个对象的数据。可以将整个对象层次写入字节流中,可以保存在文件中或在网络连接上传递。利用对象序列化可以进行对象的"深复制",即复制对象本身及引用的对象本身。序列化一个对象可能得到整个对象序列。



以下这个类是可序列化的,即可以将该类的对象保存或在网络中传递。
Java代码
import java.io.Serializable;  
 
/** 
* @author yiditushe 

*/ 
public class UserInfo implements Serializable {  
 
    private String name;  
    private int age;  
    public String getName() {  
        return name;  
    }  
    public void setName(String name) {  
        this.name = name;  
    }  
    public int getAge() {  
        return age;  
    }  
    public void setAge(int age) {  
        UserInfo.age = age;  
    } 

import java.io.Serializable;

/**
* @author yiditushe
*
*/
public class UserInfo implements Serializable {

private String name;
private int age;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
UserInfo.age = age;
}
下面演示通过HTTP连接传递该对象:
Java代码
import java.io.IOException;  
import java.io.ObjectOutputStream;  
import java.net.HttpURLConnection;  
import java.net.MalformedURLException;  
import java.net.URL;  
 
/** 
* @author yiditushe 

*/ 
public class Client {  
 
    /** 
     * @param args 
     */ 
    public static void main(String[] args) {  
        // TODO Auto-generated method stub  
        UserInfo info = new UserInfo();  
        info.setName("yiditushe");  
        info.setAge(25);  
          
        URL url = null;  
        HttpURLConnection conn = null;  
        try {  
            url = new URL("http://localhost:8080/testServlet");  
            conn = (HttpURLConnection) url.openConnection();  
            conn.setDoOutput(true);  
 
            ObjectOutputStream outputStream = new ObjectOutputStream(conn.getOutputStream());  
            //向http输出流中写入info对象  
            outputStream.writeObject(info);  
              
            outputStream.close();  
              
        } catch (MalformedURLException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        } catch (IOException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        } finally {  
            conn.disconnect();  
        }  
          
    }  
 


import java.io.IOException;
import java.io.ObjectOutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

/**
* @author yiditushe
*
*/
public class Client {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
UserInfo info = new UserInfo();
info.setName("yiditushe");
info.setAge(25);

URL url = null;
HttpURLConnection conn = null;
try {
url = new URL("http://localhost:8080/testServlet");
conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);

ObjectOutputStream outputStream = new ObjectOutputStream(conn.getOutputStream());
//向http输出流中写入info对象
outputStream.writeObject(info);

outputStream.close();

} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
conn.disconnect();
}

}

}

Java代码
import java.io.IOException;  
import java.io.ObjectInputStream;  
 
import javax.servlet.ServletException;  
import javax.servlet.http.HttpServlet;  
import javax.servlet.http.HttpServletRequest;  
import javax.servlet.http.HttpServletResponse;  
 
/** 
* @author yiditushe 

*/ 
public class TestServlet extends HttpServlet {  
 
    @Override 
    protected void doPost(HttpServletRequest req, HttpServletResponse resp)  
            throws ServletException, IOException {  
        // TODO Auto-generated method stub  
          
        //构造对象输入流  
        ObjectInputStream inputStream = new ObjectInputStream(req.getInputStream());  
        //从输入流中读取对象  
        try {  
            UserInfo info = (UserInfo)inputStream.readObject();  
            System.out.println("info.getName()=" + info.getName());  
            System.out.println("info.getAge()=" + info.getAge());  
        } catch (ClassNotFoundException e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }  
    }  
      
      

你可能感兴趣的:(java,.net,servlet,网络应用)