[java] writeObject가 java.io.NotSerializableException을 던지는 이유는 무엇이며 어떻게 수정합니까?

이 예외가 있는데 왜 던져 지는지, 어떻게 처리해야하는지 이해할 수 없습니다.

try {
    os.writeObject(element);
} catch (IOException e) {
    e.printStackTrace();
}

Atom 클래스의 다른 인스턴스를 포함하는 element은 어디에 있습니까?TransformGroupTransformGroups

public class Atom extends Group implements Serializable{
    float pozX,pozY;
    Group group= new Group();
    Color3f blue = new Color3f(new Color(255));
    Color3f black = new Color3f(new Color(0));
    Sphere AtSph=new Sphere();

    public Atom(final float WEIGHT, final int BOUNDS,final float radius,Color3f color)
    {
        AppSetting ap= new AppSetting(color, black);
        AtSph=new Sphere(radius,1,100,ap);
    }
}

전체 오류 로그 :

java.io.NotSerializableException: javax.media.j3d.TransformGroup
    at java.io.ObjectOutputStream.writeObject0(Unknown Source)
    at java.io.ObjectOutputStream.writeObject(Unknown Source)
    at cls.MolecularBuilder.addAtom(MolecularBuilder.java:511)
    at cls.MolecularBuilder$Console.HidrogenItemActionPerformed(MolecularBuilder.java:897)
    at cls.MolecularBuilder$Console$2.actionPerformed(MolecularBuilder.java:746)
    at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
    at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
    at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
    at javax.swing.AbstractButton.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
    at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(Unknown Source)
    at java.awt.Component.processMouseEvent(Unknown Source)
    at javax.swing.JComponent.processMouseEvent(Unknown Source)
    at java.awt.Component.processEvent(Unknown Source)
    at java.awt.Container.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
    at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
    at java.awt.Container.dispatchEventImpl(Unknown Source)
    at java.awt.Window.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$200(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.awt.EventQueue$4.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)

AppSetting (Atom 클래스에서) Appearance를 확장하는 사용자 정의 클래스입니다.



답변

개체의 필드에는 해당 필드가 있으며 일부는 구현되지 않습니다. Serializable . 귀하의 경우 위반 클래스는 TransformGroup. 그것을 해결하는 방법?

  • 수업이 당신 것이라면, 그것을 만드십시오 Serializable
  • 클래스가 타사이지만 직렬화 된 형식으로 필요하지 않은 경우 필드를 다음과 같이 표시합니다. transient
  • 데이터가 필요하고 타사 인 경우 정의를 수정하지 않고 타사 객체를 직렬화 할 수있는 JSON, XML, BSON, MessagePack 등과 같은 다른 직렬화 수단을 고려하십시오 .

답변

java.io.NotSerializableException내부 클래스 인스턴스 를 직렬화 할 때 발생할 수 있습니다 .

이러한 내부 클래스 인스턴스를 직렬화하면 연관된 외부 클래스 인스턴스도 직렬화됩니다.

로컬 및 익명 클래스를 포함한 내부 클래스 (즉, 정적 멤버 클래스가 아닌 중첩 클래스)의 직렬화
권장되지 않습니다.

참조 : 직렬화 가능한 인터페이스


답변

인터페이스를 구현하여 클래스를 직렬화 할 수 있도록합니다 java.io.Serializable.

  • java.io.Serializable -메소드가없는 마커 인터페이스.
  • 마커 인터페이스의 목적- ObjectOutputStream이 개체가 직렬화 가능한 개체임을 알리기위한 것 입니다.

답변