0

我正在尝试从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());
    }
}
}
4

1 回答 1

1

您需要注意默认情况下不支持命名DocumentBuilderFactory空间您必须先调用factory.setNamespaceAware(true);才能factory.newDocumentBuilder()获得一个构建器,该构建器将使用命名空间支持正确解析 XML。

至于为什么它可以工作,xmlparserv2我只能推测可能那个特定的解析器违反了 JAXP 规范并默认启用了命名空间。

于 2013-02-23T17:56:23.883 回答