Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有来自 JavaFX 的以下列表:
ObservableList<Expense> data = FXCollections.observableArrayList();
有人知道,我如何将整个集合转移到 XML 中?
如果我能做到这一点,反序列化应该真的很容易。
我用 XStream 和 Jaxb 试过了。我查看了多个教程,但没有得出一个好的结果。
可以自行序列化费用对象,但不能序列化整个列表(不使用 for 循环)。
你有什么主意吗?