将 XML 反序列化为对象

发布于 2024-09-30 02:36:14 字数 103 浏览 7 评论 0 原文

我有一个 xml 文件,该文件未使用 XStream 序列化。
它可以是任何自定义但固定的格式,
如何使用 XStream 或任何高效的 api 将其反序列化为 Object。

I have a xml file, which is not serialized using XStream.
It may be in any custom but fixed format,
How to use XStream or any efficient api to de serialize it to Object.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

自我难过 2024-10-07 02:36:14

我相信您需要实现自己的转换器,请参阅此教程

编辑:< /strong> 肯定有其他方法(阅读:其他包)来解决这个问题,但在你的问题中你提到你想使用 XStream,因此我的回复以及那里的教程链接。

I believe you need to implement your own Converter, see this tutorial

Edit: There are surely other ways (read: other packages) to sort this out, but in your question you have mentioned that you wanted to use XStream, hence my reply, and the link to tutorials there.

霊感 2024-10-07 02:36:14

您可以使用 MOXy JAXB 中的 @XmlPath 扩展将对象模型映射到任何 XML 文档不用担心编写转换器。您还可以使用外部化元数据格式将多个映射应用到对象模型:

有关详细信息,请参阅:

You could use the @XmlPath extension in MOXy JAXB to map your object model to any XML document without worrying about writing converters. You can also use the externalized metadata format to apply multiple mappings to your object model:

For more information see:

提笔落墨 2024-10-07 02:36:14

性能最高的 XML 序列化程序是 Simple。它比 JAXB 更快、内存效率更高。它也更容易使用。一切都可以通过注释完成,您不必直接处理 XML。

The most performant XML serializer is Simple. Its both faster and more memory efficient than JAXB. Its also much easier to use. Everything can be done via annotations, you do not have to deal with XML directly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文