web-dev-qa-db-ja.com

java.io.NotSerializableException

この例外があり、なぜスローされるのか、またはどのように処理するのかがわかりません。

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

ここで、elementは、他のTransformGroupを含むTransformGroupsクラスAtomのインスタンスです。

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)

注:(Atomクラスの)AppSettingは、Appearanceを拡張する単なるカスタムクラスです。

88
Bujanca Mihai

オブジェクトのフィールドには順番にフィールドがあり、そのいくつかはSerializableを実装していません。あなたの場合、問題のクラスはTransformGroupです。解決方法

  • クラスがあなたのものである場合、それをSerializableにします
  • クラスがサードパーティであるが、シリアル化された形式でそれを必要としない場合は、フィールドをtransientとしてマークします
  • データが必要でサードパーティの場合は、JSON、XML、BSON、 MessagePack など、定義を変更せずにシリアル化されたサードパーティオブジェクトを取得できるシリアル化の他の手段を検討してください。
181
Bozho

内部クラスインスタンスをシリアル化すると、「Java.io.NotSerializableException」が発生する場合があります。

「このような内部クラスインスタンスをシリアル化すると、関連する外部クラスインスタンスもシリアル化されます」

内部クラスのシリアル化(つまり、静的メンバークラスではないネストされたクラス)(ローカルクラスと匿名クラスを含む)は強​​く非推奨

参照: The Serializable Interface

64
Tho

インターフェイスJava.io.Serializableを実装して、クラスをシリアル化可能にします。

  • Java.io.Serializable-メソッドを持たないマーカーインターフェイス。
  • マーカーインターフェイスの目的-ObjectOutputStreamに、このオブジェクトがシリアル化可能なオブジェクトであることを伝えます。
12
Prabhakar