序列化接口,
web传输时使用,
只需要声明,没有要实现的方法。
运行时自动串行化

解决方案 »

  1.   

    JAVA最酷的特性,可以把本地的某个对象“压扁”,然后发到一个流对象中,(如一个文件,或一个网络端口),然后在另一个JVM中把它“膨胀”为原来的对象,因为JAVA的平台无关性,使得对象可以在很广的范围内传递。
      

  2.   

    java很厉害的一个地方,比如你要传输一个对象给对方,但是你不可能将对象传输过去,所以你就要将对象序列化,将它转换为流的形式,然后通过管道传输过去,而接受的一方则用jvm将其再转换为对象
      

  3.   

    最简单的用法, "保存"的时候用! 可以保存对象的所有信息.(所有的对象都必须实现Serializable)
      

  4.   

    我也是学JAVA不久
    我的感觉:
    JAVA里对象传的是引用;而不是对象的副本
    所以在远程调用的时候会出问题(在C端的内存里找不倒S端的里对象的引用)
    还有就是在BEAN里用的比较多点(需要象VB一样把组件的属性保存下来)
    建议你多看看书
    书是最好的老师
      

  5.   

    给一个在用Serializable接口时要注意的问题:
    引用自api
    Serialization
    It is important to note that only AWT listeners which conform to the Serializable protocol will be saved when the object is stored. If an AWT object has listeners that aren't ed serializable, they will be dropped at writeObject time. Developers will need, as always, to consider the implications of making an object serializable. One situation to watch out for is this: 
        import java.awt.*;
        import java.awt.event.*;
        import java.io.Serializable;
        
        class MyApp implements ActionListener, Serializable
        {
            BigObjectThatShouldNotBeSerializedWithAButton bigOne;
            Button aButton = new Button();
          
            MyApp()
            {
                // Oops, now aButton has a listener with a reference
                // to bigOne!
                aButton.addActionListener(this);
            }
        
            public void actionPerformed(ActionEvent e)
            {
                System.out.println("Hello There");
            }
        }
     In this example, serializing aButton by itself will cause MyApp and everything it refers to to be serialized as well. The problem is that the listener is serializable by coincidence, not by design. To separate the decisions about MyApp and the ActionListener being serializable one can use a nested class, as in the following example: 
        import java.awt.*;
        import java.awt.event.*;
        import java.io.Serializable;    class MyApp java.io.Serializable
        {
             BigObjectThatShouldNotBeSerializedWithAButton bigOne;
             Button aButton = new Button();         class MyActionListener implements ActionListener
             {
                 public void actionPerformed(ActionEvent e)
                 {
                     System.out.println("Hello There");
                 }
             }
     
             MyApp()
             {
                 aButton.addActionListener(new MyActionListener());
             }
        }