Java XML 解析标准
有没有人对名称中带有破折号的元素进行过任何类型的 XML 配对?我认为这是不可能的,有什么想法吗?
<Person-Response>
<First-Name> 3119043033121014002</First-Name>
<Last-Name> 3119043033121014002</Last-Name>
</Person-Response>
Has anyone ever done any type of XML paring with elements that have dashes in the names? I don't think its possible, any ideas?
<Person-Response>
<First-Name> 3119043033121014002</First-Name>
<Last-Name> 3119043033121014002</Last-Name>
</Person-Response>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果这是一个关于 XML 到 java 映射的问题,那么 JAXB 可以处理它:
If this is a questin regarding XML to java mapping then JAXB can handle it:
关于破折号,请参阅 W3C 的官方 XML 建议:
Regarding the dashes, see the official XML recommendation of the W3C:
这是合法的 XML;任何兼容的解析器都应该没有问题。
This is legal XML; any compliant parser should have no problems with it.
由于破折号,应该不会有任何问题。但根据 Per Norman 提到的原因,这是一个无效的 xml
There should not be any problem because of the dashes. But it is an invalid xml as per the reason mentioned by Per Norman
它是合法的 XML,任何解析器都可以解析它。
对于 Java,您可以使用 JAXP API 支持在 DOM、SAX 或 StAX 中解析此 XML。
It is a legal XML and any parser could parse it.
Regarding Java, you have the JAXP API support for parsing this XML in either DOM, SAX or StAX.