JAXB UnMarshall 集合元素顺序

发布于 2024-10-22 03:47:41 字数 670 浏览 1 评论 0原文

假设我有以下 XML

<?xml version="1.0" encoding="utf-8"?>
<names>
    <name first="John" last="Doe"/>
    <name first="Jane" last="Doe"/>
    ...
</names>

这是我的代码:

final JAXBContext context = JAXBContext.newInstance(Names.class);
final Unmarshaller um = context.createUnmarshaller();
final InputStream in = new FileInputStream(file);
final Reader reader = new InputStreamReader(in, Charset.forName("UTF-8"));
final Names namesList = (Names) um.unmarshal(reader);
...

现在我找不到任何描述这些元素的顺序的文档。 在我的应用程序中,XML 文件中的顺序与 java 对象中的顺序相同非常重要。我试图在源代码中查找它,但很难理解。我希望有人能在这方面帮助我。谢谢。

库库

lets say i have the following XML

<?xml version="1.0" encoding="utf-8"?>
<names>
    <name first="John" last="Doe"/>
    <name first="Jane" last="Doe"/>
    ...
</names>

This is my code:

final JAXBContext context = JAXBContext.newInstance(Names.class);
final Unmarshaller um = context.createUnmarshaller();
final InputStream in = new FileInputStream(file);
final Reader reader = new InputStreamReader(in, Charset.forName("UTF-8"));
final Names namesList = (Names) um.unmarshal(reader);
...

Now i could not find any documentation describing in which order these elements will be.
In my application it is important that the order which is in my XML file will be the same in the java object. I tried to look it up in the source but it was very difficult to understand. I hope somebody can help me on this one. Thanks.

kuku

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

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

发布评论

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

评论(1

淡笑忘祈一世凡恋 2024-10-29 03:47:41

对于对应于 List 属性的元素,List 中的顺序将与 XML 文档中的顺序匹配。

有关 JAXB 和集合属性的更多信息,请参阅:

For elements that correspond to a List property the order in the List will match the order from the XML document.

For more information on JAXB and collection properties see:

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