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.
我只是想知道...是否可以为这种 jaxb 根对象Serializable序列化(实现接口)以使其可以用and读/写它?ObjectOutputStreamObjectInputStream
Serializable
ObjectOutputStream
ObjectInputStream
或者最佳的绕行方式是什么?
JAXB (JSR-222) 对象只是 POJO,因此您可以添加implements Serializable到它们。您还可以通过 JAXB 从实现 Serializable 的 XML 模式生成 Java 模型。
implements Serializable