gpt4 book ai didi

java - 在 Java 中查询 XML 的最简单方法

转载 作者:IT老高 更新时间:2023-10-28 21:04:06 27 4
gpt4 key购买 nike

我有带有 XML 的小字符串,例如:

String myxml = "<resp><status>good</status><msg>hi</msg></resp>";

我想查询以获取其内容。

最简单的方法是什么?

最佳答案

XPath使用 Java 1.5 及以上版本,无外部依赖:

String xml = "<resp><status>good</status><msg>hi</msg></resp>";

XPathFactory xpathFactory = XPathFactory.newInstance();
XPath xpath = xpathFactory.newXPath();

InputSource source = new InputSource(new StringReader(xml));
String status = xpath.evaluate("/resp/status", source);

System.out.println("satus=" + status);

关于java - 在 Java 中查询 XML 的最简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/807418/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com