Ich habe diese Ausnahme und verstehe nicht, warum sie ausgelöst wird oder wie ich damit umgehen soll.
try {
os.writeObject(element);
} catch (IOException e) {
e.printStackTrace();
}
Wo element
ist eine TransformGroup
andere TransformGroups
Instanz der Klasse 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);
}
}
Das vollständige Fehlerprotokoll:
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
(in der Atom-Klasse) ist nur eine benutzerdefinierte Klasse, die das Erscheinungsbild erweitert.
java
exception
exception-handling
notserializableexception
Mihai Bujanca
quelle
quelle
javax.media.j3d.TransformGroup
selbst nicht Serializable implementiertAtom
verlängernGroup
und haben beide einGroup
Mitglied?Antworten:
Die Felder Ihres Objekts haben wiederum ihre Felder, von denen einige nicht implementiert sind
Serializable
. In Ihrem Fall ist die beleidigende KlasseTransformGroup
. Wie man es löst?Serializable
transient
quelle
Serializable
und verwendetreadObject()
undwriteObject()
manuell serialisiert. In einigen Fällen kann dies ein vernünftiger Ansatz sein. stackoverflow.com/a/12963580/1208581java.io.NotSerializableException
kann auftreten, wenn Sie eine Instanz der inneren Klasse serialisieren, weil:Ref: Die serialisierbare Schnittstelle
quelle
Machen Sie die Klasse serialisierbar, indem Sie die Schnittstelle implementieren
java.io.Serializable
.java.io.Serializable
- Marker-Schnittstelle, die keine Methoden enthält.ObjectOutputStream
dass dieses Objekt ein serialisierbares Objekt ist.quelle