繁体   English   中英

在Java中使用XPath解析XML

[英]Parse XML using XPath in Java

我想解析这个XML文件:

 <NameDefinitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:noNamespaceSchemaLocation="../Documents/Calcs/FriendlyNames.xsd">


     <NameDefinition>
         <ID>/Temporary/EIC/EICWorksheetPP/WagesLessThanAdjustments</ID>
         <Name>you have more income that doesn't count than income that counts</Name>
         <BooleanPhrases>
             <True><Text>you have more income that doesn't count than income that counts</Text></True>
             <False><Text>you have more income that counts than income that doesn't count</Text></False>
             <Blank><Text>we don't if you have more income that doesn't count than income that counts</Text></Blank>
         </BooleanPhrases>
         <BooleanQuestions>
             <True><Text>Why do I have more income that doesn't count than income that counts?</Text></True>
             <False><Text>Why do I have more income that counts than income that doesn't count?</Text></False>
             <Blank><Text>Why don't you know if I have more income that doesn't count than income that counts?</Text></Blank>
         </BooleanQuestions>
     </NameDefinition>


     <NameDefinition>
         <ID>/Temporary/EIC/HaveInaccurateInfo</ID>
         <Name>you told us your info is incorrect</Name>
         <BooleanPhrases>
             <True><Text>you told us some of your info is incorrect</Text></True>
             <False><Text>you told us your info is correct</Text></False>
             <Blank><Text>we don't know whether your info is correct</Text></Blank>
         </BooleanPhrases>
         <BooleanQuestions>
             <True><Text>Why is some of my info incorrect?</Text></True>
             <False><Text>Why is my info correct?</Text></False>
             <Blank><Text>Why don't you know if my info is correct?</Text></Blank>
         </BooleanQuestions>
     </NameDefinition>

</NameDefinitions>

获取IDName节点的值。 我想返回的数据结构是Map(String,String)所以ID是键, Name是值。

如何在Java 6中完成此操作?

编辑:

这是我当前的实现

static Map<String, String> parse(String pathToFriendlyNamesFile) 
        throws IOException, 
        XPathExpressionException { 

    XPath xpath = XPathFactory.newInstance().newXPath();
    Map<String, String> map = new LinkedHashMap<String,String>();

    InputStream file = null;

    try {
        file = new BufferedInputStream(Files.newInputStream(Paths.get(pathToFriendlyNamesFile)));
        InputSource inputSource = new InputSource(file);

        NodeList nodeIDList = (NodeList) xpath.evaluate("//NameDefinition/ID", inputSource, XPathConstants.NODESET);
        NodeList nodeNameList = (NodeList) xpath.evaluate("//NameDefinition/Name", inputSource, XPathConstants.NODESET);

        int nodeCount = nodeIDList.getLength();
        System.out.println("Node count: "+nodeCount);
        for(int i=0;i<nodeCount;i++) {

            Node nodeID = nodeIDList.item(i);
            Node nodeName = nodeNameList.item(i);

            String id = nodeID.getTextContent();
            String name = nodeName.getTextContent();
            map.put(id, name);
        }

    } catch (IOException e) {
        e.printStackTrace();
    } catch (XPathExpressionException e) {
        e.printStackTrace();
    } finally {
        file.close();
    }
    return map;
}

例外:

java.io.IOException: Stream closed
    at java.io.BufferedInputStream.getBufIfOpen(BufferedInputStream.java:162)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:206)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:254)

javax.xml.xpath.XPathExpressionException: java.io.IOException: Stream closed
    at org.apache.xpath.jaxp.XPathImpl.evaluate(XPathImpl.java:481)

Caused by: java.io.IOException: Stream closed
    at java.io.BufferedInputStream.getBufIfOpen(BufferedInputStream.java:162)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:206)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:254)

我关闭了视频流,但显然还是有问题吗?

//将xml-apis.jar用于以下类,例如DocumenttBuilderFactory。

//XPATH expressions
public static final String IdExpr = "/NameDefinition/@Id";
public static final String NameExpr = "/NameDefinition/@Name";

Map<String,String> evaluateXML(String file, String IdExpr, String NameExpr) {
    Map < String,
    String > returnMap = null;
    try {
        FileInputStream fis = new FileInputStream(new File(file));

        DocumentBuilderFactory builderFactory = DocumentBuilderFactory
            .newInstance();
        DocumentBuilder builder = builderFactory.newDocumentBuilder();
        Document xmlDocument = builder.parse(fis);

        XPath xPath = XPathFactory.newInstance().newXPath();

        String Id = xPath.compile(IdExpr).evaluate(
                xmlDocument);
        String Name = xPath.compile(NameExpr).evaluate(
                xmlDocument);

        returnMap = new HashMap < String,
        String > ();

        returnMap.put(Id, Name);
    }

解决方案很复杂,在发布此问题之前,我应该做一些研究:

static Map<String,String> parseDoc(String pathToFriendlyNamesFile) 
        throws ParserConfigurationException, 
        SAXException, 
        IOException {

    File f = new File(pathToFriendlyNamesFile); 
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    Document doc = db.parse(f);

    Map<String,String> map = new LinkedHashMap<String, String>();

    doc.getDocumentElement().normalize();

    System.out.println("Root Element: "+doc.getDocumentElement().getNodeName());

    NodeList nList = doc.getElementsByTagName("NameDefinition");
    System.out.println("How many nodes? "+nList.getLength());
    for(int i=0;i<nList.getLength();i++) {
        Node nNode = nList.item(i);

        if(nNode.getNodeType() == Node.ELEMENT_NODE) {
            Element eElement = (Element) nNode;
            String nodeID = eElement.getElementsByTagName("ID").item(0).getTextContent();
            String name = eElement.getElementsByTagName("Name").item(0).getTextContent();

            System.out.println("ID: "+nodeID+" Name: "+name);
            map.put(nodeID, name);
        }
    }

    return map;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM