可以使用 google-api-java-client (现在是 google-http-java-client)进行部分 XML 解析吗?
我有一些关于 XML 解析的简单问题:
- 是否可以将特定的 XML 元素解析为 Java 类型 位于 XML 文档层次结构的各个深层 无需将每个祖先元素映射到相应的java 输入并解析它?换句话说,解析“deep_nested_element” 作为 DeepNestedElement.class 无需解析 'root_element' 作为 Root.class?
- 是否可以将特定的 XML 元素解析为 Java 类型 有两个具有相同值的属性,换句话说就是解析 <人名=“约翰”昵称=“约翰”/>并且不解析 <人名=“杰克”昵称=“开膛手杰克”/>?
问候, 博内夫
I have some quick questions regarding XML parsing:
- Is it possible to parse, as a Java type, specific XML elements that
are positioned in various deep levels of the XML document hierarchy
without having to map each ancestor element to corresponding java
type and parsing it? In other words parsing a 'deep_nested_element'
as DeepNestedElement.class without the need of parsing
'root_element' as Root.class? - Is it possible to parse, as a Java type, specific XML elements that
have two attributes which have equal values, in other words parsing
<person name="John" nickname="John"/> and not parsing
<person name="Jack" nickname="Jack The Ripper"/>?
Regards,
Bonev
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这两个问题都是如此。两个链接: http:// docs.oracle.com/javase/1.5.0/docs/api/javax/xml/xpath/package-summary.html
和
http://www.w3schools.com/xpath/default.asp 。
Yes it is for both questions. Two links: http://docs.oracle.com/javase/1.5.0/docs/api/javax/xml/xpath/package-summary.html
and
http://www.w3schools.com/xpath/default.asp .