Search code examples
javaxmlxml-parsingxmldom

Read XML files with Java


I need to read a XML file with java. File structure as below.

<?xml version="1.0" encoding="UTF-8"?>
<xml_tool xmlns:md="http://www.example.com/XT/1.0/">
    <md:header>
        <md:application_version>1.0</md:application_version>
        <md:export_date>19-04-2012</md:export_date>
        <md:export_time>14:55</md:export_time>
        <md:export_user>USER01</md:export_user>
    </md:header>
    <md:table table_name="CUSTOMER" key="customer number" record_count="2" column_count="5">
        <md:record>
            <md:column name="customer_number">123456</md:column>
            <md:column name="reg_date">01-04-2012</md:column>
            <md:column name="customer_name">Test Customer</md:column>
            <md:column name="customer_type">Normal </md:column>
            <md:column name="comments">This is a test record</md:column>
        </md:record>
        <md:record>
            <md:column name="customer_number">555111</md:column>
            <md:column name="reg_date">02-04-2012</md:column>
            <md:column name="customer_name">Test Customer</md:column>
            <md:column name="customer_type">VIP </md:column>
            <md:column name="comments">This is a test record</md:column>
        </md:record>
    </md:table>
</xml_tool>

I have read How to read XML file in Java – (DOM Parser) example and try to do my work. But I'm unable to read XML file successfully.

My Code

    try {

        File fXmlFile = new File("c:\\file.xml");
        DocumentBuilderFactory dbFactory = DocumentBuilderFactory
                .newInstance();
        DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
        Document doc = dBuilder.parse(fXmlFile);
        doc.getDocumentElement().normalize();

        NodeList nList = doc.getElementsByTagName("md:record");

        for (int i = 0; i < nList.getLength(); i++) {

            Node node = nList.item(i);
            if (node.getNodeType() == Node.ELEMENT_NODE) {

                Element eElement = (Element) node;

                System.out.println(getTagValue("md:column", eElement));


            }
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

 private static String getTagValue(String sTag, Element eElement) {
        NodeList nlList = eElement.getElementsByTagName(sTag).item(0).getChildNodes();

            Node nValue = (Node) nlList.item(0);

        return nValue.getNodeValue();
      }

and Result is

123456
555111

How could I read this XML file?


Solution

  • Update your for loop...

    for (int i = 0; i < nList.getLength(); i++)
    {
          Node node = nList.item(i);
          if (node.getNodeType() == Node.ELEMENT_NODE)
          {                 
                 if(eElement.hasChildNodes())
                 {
                     NodeList nl = node.getChildNodes();
                     for(int j=0; j<nl.getLength(); j++)
                     {
                         Node nd = nl.item(j);
                         System.out.println(nd.getTextContent());
                     }
                 }
           }
    }