- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Javafx,并将对象包装到 ListProperty 中,以便让 TableView 针对列表对象的任何更改进行更新。现在我正在尝试序列化我的项目和对象的 ListProperty,它向我抛出此异常。
java.io.NotSerializableException: javafx.beans.property.SimpleListProperty
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1181)
at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1541)
at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1506)
at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1429)
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1175)
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:347)
at Util.FileManager.serializeProject(FileManager.java:23)
at Controller.FrameworkController.saveProject(FrameworkController.java:549)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:75)
at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:279)
at javafx.fxml.FXMLLoader$ControllerMethodEventHandler.handle(FXMLLoader.java:1435)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:28)
at javafx.event.Event.fireEvent(Event.java:171)
at javafx.scene.control.MenuItem.fire(MenuItem.java:456)
at com.sun.javafx.scene.control.skin.ContextMenuContent$MenuItemContainer.doSelect(ContextMenuContent.java:1197)
at com.sun.javafx.scene.control.skin.ContextMenuContent$MenuItemContainer$6.handle(ContextMenuContent.java:1148)
at com.sun.javafx.scene.control.skin.ContextMenuContent$MenuItemContainer$6.handle(ContextMenuContent.java:1146)
at com.sun.javafx.event.CompositeEventHandler.dispatchBubblingEvent(CompositeEventHandler.java:69)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:217)
at com.sun.javafx.event.EventHandlerManager.dispatchBubblingEvent(EventHandlerManager.java:170)
at com.sun.javafx.event.CompositeEventDispatcher.dispatchBubblingEvent(CompositeEventDispatcher.java:38)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:37)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
at com.sun.javafx.event.BasicEventDispatcher.dispatchEvent(BasicEventDispatcher.java:35)
at com.sun.javafx.event.EventDispatchChainImpl.dispatchEvent(EventDispatchChainImpl.java:92)
at com.sun.javafx.event.EventUtil.fireEventImpl(EventUtil.java:53)
at com.sun.javafx.event.EventUtil.fireEvent(EventUtil.java:33)
at javafx.event.Event.fireEvent(Event.java:171)
at javafx.scene.Scene$MouseHandler.process(Scene.java:3328)
at javafx.scene.Scene$MouseHandler.process(Scene.java:3168)
at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3123)
at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1563)
at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2265)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:250)
at com.sun.javafx.tk.quantum.GlassViewEventHandler$MouseEventNotification.run(GlassViewEventHandler.java:173)
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:292)
at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
at com.sun.glass.ui.View.notifyMouse(View.java:922)
at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:29)
at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:73)
at java.lang.Thread.run(Thread.java:724)
我的项目类是这样的,我自己的所有对象都已经实现了可序列化。
public class Project implements Serializable{
private String name;
private String standard;
private ListProperty<Equipment> projectEquipments;
private ListProperty<LegendElement> equipmentsLegend;
public Project() {
this.projectEquipments = new SimpleListProperty<Equipment>(FXCollections.observableArrayList(new ArrayList<Equipment>()));
this.equipmentsLegend = new SimpleListProperty<>(FXCollections.observableList(new ArrayList<LegendElement>()));}
我可以做什么来序列化我的项目及其中的设备列表?
最佳答案
这是适合我的解决方案(在 JPA 实体上序列化 SimpleXXXProperty,其中 xxx 可以是字符串、对象等)
https://gist.github.com/james-d/a7202039b00170256293
你“只是”必须:
1) 实现可序列化
2) 将所有属性设置为 transient
3)定义2个特殊方法,如下所示:
private void writeObject(ObjectOutputStream s) throws IOException {
s.defaultWriteObject();
s.writeLong(idProperty().longValue());
s.writeUTF(aStringProperty().getValueSafe()); // can't be null so use getValueSafe that returns empty string if it's null
s.writeUTF(anOtherStringPoperty().getValueSafe());
}
和
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
idProperty.set(s.readLong());
aStringProperty.set(s.readUTF());
anOtherStringPoperty(s.readUTF());
// set values in the same order as writeObject()
}
瞧:)您可以使用
序列化您的对象MyObject o = new MyObject();
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(o);
oos.close();
注意,这些奇怪的私有(private)方法是由Java虚拟机直接调用的,不能像官方文档中提到的那样被Override、public或其他。
已编辑:不要对字符串使用 writeChars,而是使用 writeUTF。
请记住,在反序列化过程中,“读取的对象”不会被实例化(不会调用构造函数!),然后所有属性都不会初始化,因此 idProperty.set(o) 将抛出 nullPointerException。
因此,您必须创建一个 initMethode 来初始化所有属性。在从 ObjectInputStream 读取数据之前,从构造函数和 readObject 方法调用此方法
编辑:我制作了自动写入和读取的助手。如果您想使用它,这里是代码:
public class WriteObjectsHelper {
// write a StringProperty to ObjectOutputStream
public static void writeStringProp(ObjectOutputStream s, StringProperty strProp) throws IOException {
s.writeUTF(strProp.getValueSafe());
}
// write a ListProperty to ObjectOutputStream
public static void writeListProp(ObjectOutputStream s, ListProperty lstProp) throws IOException {
if(lstProp==null || lstProp.getValue()==null) {
s.writeInt(0);
return;
}
s.writeInt(lstProp.size());
for(Object elt:lstProp.getValue()) s.writeObject(elt);
}
// automatic write set of properties to ObjectOutputStream
public static void writeAllProp(ObjectOutputStream s, Property... properties) throws IOException {
s.defaultWriteObject();
for(Property prop:properties) {
if(prop instanceof IntegerProperty) s.writeInt(((IntegerProperty) prop).intValue());
else if(prop instanceof LongProperty) s.writeLong(((LongProperty) prop).longValue());
else if(prop instanceof StringProperty) s.writeUTF(((StringProperty)prop).getValueSafe());
else if(prop instanceof BooleanProperty) s.writeBoolean(((BooleanProperty)prop).get());
else if(prop instanceof ListProperty) writeListProp(s,(ListProperty)prop);
else if(prop instanceof ObjectProperty) s.writeObject(((ObjectProperty) prop).get());
else throw new RuntimeException("Type d'objet incompatible : " + prop.toString());
}
}
}
public class ReadObjectsHelper {
// Read a ListProperty from ObjectInputStream (and return it)
public static ListProperty readListProp(ObjectInputStream s) throws IOException, ClassNotFoundException {
ListProperty lst=new SimpleListProperty(FXCollections.observableArrayList());
int loop=s.readInt();
for(int i = 0;i<loop;i++) {
lst.add(s.readObject());
}
return lst;
}
// automatic fill a set of properties with values contained in ObjectInputStream
public static void readAllProp(ObjectInputStream s, Property... properties) throws IOException, ClassNotFoundException {
for(Property prop:properties) {
if(prop instanceof IntegerProperty) ((IntegerProperty)prop).setValue(s.readInt());
else if(prop instanceof LongProperty) ((LongProperty)prop).setValue(s.readLong());
else if(prop instanceof StringProperty) ((StringProperty)prop).setValue(s.readUTF());
else if(prop instanceof BooleanProperty) ((BooleanProperty)prop).setValue(s.readBoolean());
else if(prop instanceof ListProperty) ((ListProperty)prop).setValue(readListProp(s));
else if(prop instanceof ObjectProperty) ((ObjectProperty)prop).setValue(s.readObject());
else throw new RuntimeException("Unsupported object type : " + prop==null?null:prop.toString());
}
}
}
还有他们,这是我的(法国)JPA 实体的一部分:
@Entity
@Table(name="articles")
public class Article implements Serializable, IEntity {
private transient LongProperty idArticle;
public LongProperty idArticleProperty() { return idArticle; }
private transient StringProperty descriptionFr;
public StringProperty descriptionFrProperty() { return descriptionFr; }
private transient StringProperty reference;
public StringProperty referenceProperty() { return reference; }
private transient StringProperty constructeur;
public StringProperty constructeurProperty() { return constructeur; }
private transient StringProperty numSAP;
public StringProperty numSAPProperty() { return numSAP; }
private transient StringProperty descriptionEn;
public StringProperty descriptionEnProperty() { return descriptionEn; }
private transient ListProperty<Article> testList;
public ListProperty<Article> articlesProperty() {return testList; }
public Article() {
initInstance();
}
/**
* Need for calling by readObject;
*/
private void initInstance() {
idArticle=new SimpleLongProperty();
descriptionFr=new SimpleStringProperty();
descriptionEn=new SimpleStringProperty();
reference=new SimpleStringProperty();
constructeur=new SimpleStringProperty();
numSAP=new SimpleStringProperty();
testList=new SimpleListProperty<>(FXCollections.observableArrayList());
}
private void writeObject(ObjectOutputStream s) throws IOException {
WriteObjectsHelper.writeAllProp(s,idArticle,descriptionFr,reference,constructeur,numSAP,descriptionEn,testList);
}
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
initInstance();
ReadObjectsHelper.readAllProp(s, idArticle,descriptionFr,reference,constructeur,numSAP,descriptionEn,testList);
}
@Column(name = "idArticle")
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Long getIdArticle() {
return idArticle.get();
}
public void setIdArticle(Long idArticle) {
this.idArticle.set(idArticle);
}
//...
}
关于javafx - SimpleListProperty 上的 NotSerializedException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18791566/
我不知道这是不是问这种问题的最佳地点, 我看到一些 JavaFX伙计们,重新标记 一些问题通过替换 javafx来自 javafx-2并采用新的 javafx-8 .它被弃用了还是什么? 编辑 : 不
错误本身: Error:java: invalid flag: --add-modules=javafx.fxml,javafx.graphics,javafx.controls,javafx.bas
这个想法是让一个应用程序在每个显示器上显示两个不同的窗口(阶段),该应用程序应该知道计算机有多少个显示器及其分辨率。 javafx有可能吗? 最佳答案 对于当前版本的 JavaFX (2.2),您可以
我正在将我的项目从 javafx 1.3 转换为 javafx 2.1。但我对 javafx.lang 有疑问包裹。 最佳答案 JavaFX 1.3 lang 包内容被拆分并移至下一个位置: 时长变为
当我尝试将标签添加到 gridpane 中时,如第二张图片所示,它不起作用。我已经尝试了很多东西,比如添加 CSS,但它仍然无法正常工作。为什么第 113 和 114 行不起作用? (opcje.se
我有一个JavaFX ContextMenu分配给滚动面板的鼠标右键单击。它会打开,但在滚动 Pane 外部单击时不会关闭。我可以在滚动 Pane 中添加另一个鼠标事件以将其隐藏,但这只能解决1个问题
我有一个tableview,其中附有一个可观察到的自定义类对象的列表(类类型:SalesInvoiceNetSale)。该表中的所有数据都可以正常显示。可观察列表中的最后一项是总计行(类类型:Sale
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 2年前关闭。 Improve this questi
我想知道如何在JavaFX中绘制半圆。我尝试使用Shape和QuadCurve,但无法制作出完美的半圆。 这是我要绘制的图片: 最佳答案 您链接的图片实际上是一个半圆环。您可以通过绘制嵌套的2条圆弧和
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我正在寻找 JavaFX 支持的图像类型(最新)列表,例如PNG、JPEG、TIFF。不同的搜索引擎没有帮助......知道从哪里开始吗? 更特别的是,我对 16 位灰度图像(不同格式)和罕见的受支持
我希望在 javafx 中让标签每 0.1 秒闪烁一次。文本显示在后台运行的 ImageView gif 的顶部。我将如何去做,或者您对最佳方法有什么建议? 谢谢 最佳答案 @fabian 的解决方案
我需要测试所选项目的值以调用不同的方法,因此我编写了添加侦听器的代码,但是该代码生成语法错误 @FXML private JFXComboBox cmbComp; cmbComp.valuePrope
我正在 Javafx 中编写一个非常简单的应用程序,其中舞台上有一个带有文本框的按钮作为一个场景。现在,我想要的行为是,当我单击按钮时,我可以使用另一个按钮加载另一个场景和舞台上的一个文本框,然后删除
编辑:如果用户单击“删除”以删除 ListView 中的项目,我会弹出一个警告框。它有效,但我希望它能超越原来的舞台。它出现在我的第一台显示器上。有什么方法可以设置警报显示时的位置吗? 请注意,“所有
我想使用 JavaFX 编写一个笔画绘图应用程序。我有一个压敏绘图板,如果能够读取笔的压力和倾斜值,那就太好了。 JavaFX 有一个 API 可以处理鼠标、触摸和滑动输入,但似乎没有任何东西可以产生
我在 JavaFX 中使用条形图和折线图。当我使两个图表大小相同并将它们放在同一位置时,它们完美地相互重叠。我如何使折线图显示在条形图的顶部。 目前我已将它们的不透明度设置为 0.7,这样它们“看起来
此问题与 this 相关。现在我想为字段值等于某个值的行着色。 @FXML private TableView tv_mm_view; @FXML private Ta
我有一个程序,可以生成高度图(0-255 的整数的 2D 数组),并使用 Shape3D“Box”对象为每个“像素”构建 3D View ,其高度与其在高度图中的值成比例。这会创建一个看起来很酷的四四
我想为 JavaFX 创建上下文菜单。这是我测试过的代码。但是由于某种原因,当我右键单击树节点时没有上下文菜单。你能帮我找出我的错误吗。 import java.util.Arrays; import
我是一名优秀的程序员,十分优秀!