У меня есть xml, как показано ниже.
<fieldConstraint>
<fieldBinding>
<fieldName>instanceId</fieldName>
<classType>Integer</classType>
<bindingName>$instanceId</bindingName>
<genericType>Number</genericType>
</fieldBinding>
</fieldConstraint>
<fieldConstraint>
<fieldBinding>
<fieldName></fieldName>
<classType>String</classType>
<bindingName>$alertText</bindingName>
<genericType>String</genericType>
</fieldBinding>
<fieldBinding>
<fieldName>alertText22</fieldName>
<classType>String22</classType>
<bindingName>$alertText</bindingName>
<genericType>String</genericType>
</fieldBinding>
</fieldConstraint>
Мне нужно получить значение <fieldName>
и значение <classType>
, разделенные каким-либо специальным символом (#).
forexample: instanceId # Integer (желаемый результат должен выглядеть следующим образом)
Я пытаюсь использовать xpath с использованием Java, как показано ниже. Я не смог получить желаемый вывод.
List importedFields =new ArrayList();
DocumentBuilderFactory domFactory =
DocumentBuilderFactory.newInstance();
domFactory.setNamespaceAware(true);
DocumentBuilder builder = domFactory.newDocumentBuilder();
Document doc = builder.parse("abc.xml");
XPath xpath = XPathFactory.newInstance().newXPath();
NamespaceContext context = new NamespaceContextMap(
"foo", "http://www.cisco.com/BRL");
xpath.setNamespaceContext(context);
XPathExpression expr = xpath.compile("concat(//foo:fieldConstraint/foo:fieldBinding/foo:fieldName/text(),//foo:fieldConstraint/foo:fieldBinding/foo:classType/text())");
Object result = expr.evaluate(doc, XPathConstants.NODESET);
NodeList nodes = (NodeList) result;
for (int i = 0; i < nodes.getLength(); i++) {
Node currentItem = nodes.item(i);
String value = currentItem.getTextContent();
importedFields.add(value);
System.out.println("FIELD ARRAY list IS:"+importedFields);
Я получаю следующее исключение.
Ваша помощь приветствуется.
Exception in thread "main"
com.sun.org.apache.xpath.internal.XPathException: Can not convert #STRING to a NodeList!
at com.sun.org.apache.xpath.internal.objects.XObject.error(Unknown Source)
at com.sun.org.apache.xpath.internal.objects.XObject.nodelist(Unknown Source)
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.getResultAsType(Unknown Source)
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(Unknown Source)
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(Unknown Source)
at com.cisco.sample.Xpath.main(Xpath.java:47)
--------------- linked to ------------------
javax.xml.xpath.XPathExpressionException
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(Unknown Source)
at com.cisco.sample.Xpath.main(Xpath.java:47)
Caused by: com.sun.org.apache.xpath.internal.XPathException: Can not convert #STRING to a NodeList!
at com.sun.org.apache.xpath.internal.objects.XObject.error(Unknown Source)
at com.sun.org.apache.xpath.internal.objects.XObject.nodelist(Unknown Source)
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.getResultAsType(Unknown Source)
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.eval(Unknown Source)
... 2 more