Java XML 解析标准

发布于 2024-10-27 04:34:18 字数 251 浏览 1 评论 0原文

有没有人对名称中带有破折号的元素进行过任何类型的 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 技术交流群。

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

发布评论

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

评论(5

情仇皆在手 2024-11-03 04:34:18

如果这是一个关于 XML 到 java 映射的问题,那么 JAXB 可以处理它:

@XmlRootElement(name = "Person-Response")
public class PersonResponse {
    @XmlElement(name = "First-Name")
    String firstName;
    @XmlElement(name = "Last-Name")
    String lastName;
}

If this is a questin regarding XML to java mapping then JAXB can handle it:

@XmlRootElement(name = "Person-Response")
public class PersonResponse {
    @XmlElement(name = "First-Name")
    String firstName;
    @XmlElement(name = "Last-Name")
    String lastName;
}
半世晨晓 2024-11-03 04:34:18

关于破折号,请参阅 W3C 的官方 XML 建议

鼓励文档作者使用
有意义的单词或名称
自然词的组合
语言,并避免符号或
名称中的空格字符。笔记
冒号、连字符减号、句号
(句号)、LOW LINE(下划线)和
中点是明确允许的。

Regarding the dashes, see the official XML recommendation of the W3C:

Document authors are encouraged to use
names which are meaningful words or
combinations of words in natural
languages, and to avoid symbolic or
white space characters in names. Note
that COLON, HYPHEN-MINUS, FULL STOP
(period), LOW LINE (underscore), and
MIDDLE DOT are explicitly permitted.

ㄟ。诗瑗 2024-11-03 04:34:18

这是合法的 XML;任何兼容的解析器都应该没有问题。

This is legal XML; any compliant parser should have no problems with it.

北方的巷 2024-11-03 04:34:18

由于破折号,应该不会有任何问题。但根据 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

新人笑 2024-11-03 04:34:18

它是合法的 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.

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