在jbutton中序列化对象

时间:2015-01-17 10:17:17

标签: java swing serialization field

我在netbean中用jframe创建了一个jbutton,我想在点击jbutton时序列化一个对象

错误:java.io.NotSerializableException:javax.swing.GroupLayout

我没有序列化任何布局,但为什么会出现此错误?

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                         
getValue1 a =new getValue1();
a.name=jTextField1.getText();
a.ps=jTextField2.getText();
a.type=jComboBox1.getSelectedItem().toString();

try{
   FileOutputStream fileOut =new FileOutputStream("C:\\employee.ser");
   ObjectOutputStream out = new ObjectOutputStream(fileOut);
   out.writeObject(a);
   out.close();
   fileOut.close();
   System.out.printf("C:\\employee.ser");
}
catch(IOException i){
        i.printStackTrace();
    }
}

public class getValue1 implements java.io.Serializable{
    public String name;
    public String ps;
    public String type;
}

1 个答案:

答案 0 :(得分:1)

如果getValue1(这是一个类的坏名称,类不是字段,名称应该看起来更像Value)是另一个类(它是一个内部类)的声明的一部分,序列化器将尝试序列化父母班。

您应该将类​​移动到新的类声明。