我正在尝试从XML file via XPath
. 我的代码在XML
没有命名空间的情况下工作,但由于我的代码有命名空间,我将必要的内容添加NamespaceContext
到 X Path 对象中。不幸的是,它XPath
没有提供任何数据,所以经过一番摆弄后,我的代码没有改变,但是这个 jar xmlparserv2.jar
添加到了类路径中。瞧,突然之间一切都完美无缺。
我可以看到 jar 包含已经在JDK
(1.7.0_15)中但可能是不同版本的类。
所以我的问题是
a) 有没有办法找出原始类出了什么问题,JDK
除了我必须通过无尽的调试classes
吗?
b)是否有人对替代解决方案有想法/我如何更改我的代码,以便我不必发送额外的“不必要的” jar
?
谢谢西蒙
那是有问题的代码:
public class JavaApplication1 {
public static void main(String[] args) throws IOException, SAXException {
Document doc = createDoc("Persons.xml");
parseSFMessage(doc);
}
private static void parseSFMessage(Node node) {
if (node.getNodeName().startsWith("Persons:person") && node.hasChildNodes()) {
print("PLZ: " + getNodeValue(node, "ns1:PLZ"));
}
NodeList nodeList = node.getChildNodes();
for (int i = 0; i < nodeList.getLength(); i++) {
Node currentNode = nodeList.item(i);
if (currentNode.getNodeType() == Node.ELEMENT_NODE) {
parseSFMessage(currentNode);
}
}
}
private static Document createDoc(String s) {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = null;
Document doc = null;
try {
builder = factory.newDocumentBuilder();
doc = builder.parse(new FileInputStream(s));
} catch (SAXException e) {
} catch (IOException e) {
} catch (ParserConfigurationException e) {
}
return doc;
}
private static String getNodeValue(Node dom, String element) {
NamespaceContext ctx = new NamespaceContext() {
public String getNamespaceURI(String prefix) {
String uri;
if (prefix.equals("ns1")) {
uri = "http://someurl.com/schemas/class/Utils";
} else {
uri = null;
}
return uri;
}
public Iterator getPrefixes(String val) {
return null;
}
public String getPrefix(String uri) {
return null;
}
};
String result = null;
XPathFactory xpf = XPathFactory.newInstance();
XPath xp = xpf.newXPath();
xp.setNamespaceContext(ctx);
try {
result = xp.evaluate(element, dom);
} catch (XPathExpressionException e) {
e.printStackTrace();
}
return result;
}
private static void print(Object o) {
if (o != null) {
System.out.println(o.toString());
}
}
}