我的xpath查询不起作用,我找不到几个小时的解决方案。我感谢你的每一个帮助。
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
dbf.setNamespaceAware(true);
DocumentBuilder db = dbf.newDocumentBuilder();
InputSource inputSource = new InputSource(new ByteArrayInputStream(xml.getBytes("utf-8")));
Document xmldocument = db.parse(inputSource);
XPath xPath = XPathFactory.newInstance().newXPath();
String prefix = xmldocument.getDocumentElement().getPrefix();
searchElementsXml = new String[]{"name", "id", "version", "description", "keywords", "authorInfos.name", "status"};
for(int j = 0; j < searchElementsXml.length; j++){
String expression ="/*/" + prefix + ":" + searchElementsXml[j];
NodeList nodeList = (NodeList)
xPath.compile(expression).evaluate(xmldocument, XPathConstants.NODESET);
for (int i = 0; i < nodeList.getLength(); i++) {
System.out.println(nodeList.item(i).getFirstChild().getNodeValue());
}
}
以前尝试表达的部分内容:
String expression ="/*/" + prefix + ":" + searchElementsXml[j];
String expression ="/*:serviceSpecification" "/*:" + searchElementsXml[j];
String expression ="/*/*:id"
他们在https://www.freeformatter.com/xpath-tester.html#ad-output上工作,但在我的java代码中没有。
我的XML看起来像:
<?xml version="1.0" encoding="UTF-8"?>
<ServiceSpecificationSchema:serviceSpecification xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ServiceSpecificationSchema="http://foo.bar/ServiceSpecificationSchema.xsd" xsi:schemaLocation="http://foo.barServiceSpecificationSchema.xsd ServiceSpecificationSchema.xml">
<ServiceSpecificationSchema:id>someid</ServiceSpecificationSchema:id>
<ServiceSpecificationSchema:name>myname</ServiceSpecificationSchema:name>
....
答案 0 :(得分:0)
我有以下几行:
SimpleNamespaceContext simpleNamespaceContext = new SimpleNamespaceContext();
simpleNamespaceContext.bindNamespaceUri(prefix,uri);
xPath.setNamespaceContext(simpleNamespaceContext);
绝对不知道为什么会这样,但现在我的查询工作正常。
答案 1 :(得分:0)
一般来说,它取决于您使用的基础XPath引擎和XPath版本,但实际上是:
String expression ="/*/" + prefix + ":" + searchElementsXml[j];
prefix
与NamespaceContext中设置的名称空间URI不匹配,将不会返回结果。所以在你设置之后 - 它可以工作。
String expression ="/*:serviceSpecification" "/*:" + searchElementsXml[j];
以及
String expression ="/*/*:id"
都定义必须为任何名称空间检索serviceSpecification
和id
(或searchElementsXml[j]
)。 - 属于XPath引擎和版本 - 如果它受支持那么它可以工作。
注意:XPath 1.0不支持&#34;任何命名空间&#34;为/*:element
。 XPath 2+可以。
因此,您使用的引擎可能会将XPath表达式威胁为XPath 1.0