Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过 Webservice 获取一个 XML 文件,现在我只想通过在同一标记中找到某个匹配项来从中获取某些数据:
例如:< Person name="Peter" age="33" />
现在我想找到彼得的名字并返回他的年龄。也许是“如果这个 xml-tag 包含这个然后给我它”的一般解决方案。我真的不知道该怎么做,也许是tokinizing它或类似的东西,但我想不通。有人有想法吗?-- 代码是用 Java 编写的!
使用 XPath 提取带有条件的特定标记。喜欢
"/Person[@name='Peter']/"
请参阅本文了解如何在 Java 中使用 XPath。