この例外があり、なぜスローされるのか、またはどのように処理するのかがわかりません。
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を拡張する単なるカスタムクラスです。
オブジェクトのフィールドには順番にフィールドがあり、そのいくつかはSerializable
を実装していません。あなたの場合、問題のクラスはTransformGroup
です。解決方法
Serializable
にしますtransient
としてマークします内部クラスインスタンスをシリアル化すると、「Java.io.NotSerializableException」が発生する場合があります。
「このような内部クラスインスタンスをシリアル化すると、関連する外部クラスインスタンスもシリアル化されます」
「内部クラスのシリアル化(つまり、静的メンバークラスではないネストされたクラス)(ローカルクラスと匿名クラスを含む)は強く非推奨」
インターフェイスJava.io.Serializable
を実装して、クラスをシリアル化可能にします。
Java.io.Serializable
-メソッドを持たないマーカーインターフェイス。ObjectOutputStream
に、このオブジェクトがシリアル化可能なオブジェクトであることを伝えます。