无法在java中读取XML文件?

时间:2013-04-29 02:54:23

标签: java xml

所以我在阅读这个XML文件时遇到了很多麻烦:

<?xml version = "1.0" encoding = "UTF-8"?>
<!--this version of Eclipse dosn't support direct creation of XML files-->
<!-- you have to create one in notepad and then copy/paste it into Eclipse-->

<root testAttribute = "testValue">
    <data>Phoebe</data>
    <data>is</data>
    <data>a</data>
    <data>puppy!</data>

    <secondElement testAttribute = "testValueAgain">
        <data2>Poop</data2>
        <data2>Doopy</data2>
    </secondElement>
</root>

在我的java文件中,我在这一行中得到一个NullPointerException。 这是代码:(我会指出发生异常的地方)

import javax.xml.parsers.*;
import org.w3c.dom.*; 
import org.xml.sax.*;

import java.io.*;

public class Reading {
    public static void main(String args[]){
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        try {
            DocumentBuilder builder = factory.newDocumentBuilder();
            Document doc = builder.parse(new File("res/Test.xml"));

            ////////////////////GET ELEMENTS//////////////////

            Element rootElement = doc.getDocumentElement(); 
            System.out.println("Root element: " + doc.getDocumentElement().getNodeName());
            System.out.println("testAttribute for root element: "
                + rootElement.getAttribute("testAttribute"));

            Element secondElement = doc.getElementById("secondElement");
            System.out.println("testAttribute for second element: " + 
                secondElement.getAttribute("testAttribute")); //THIS IS THE LINE

            NodeList list = rootElement.getElementsByTagName("data");

            NodeList list2 = rootElement.getElementsByTagName("data2");

            //////////////////////////////////

            for(int i = 0; i < list.getLength(); i++){
                Node dataNode = list.item(i);
                System.out.println("list index: " + i + " data at that index: " +
                dataNode.getTextContent());
            }

            for(int i = 0; i < list2.getLength(); i++){
                Node dataNode = list2.item(i);
                System.out.println("list2 index: " + i + " data at that index: " +
                dataNode.getTextContent());
            }
        }catch(ParserConfigurationException e){
            e.printStackTrace();
        }catch(IOException e){
            e.printStackTrace();
        }catch(SAXException e){
            e.printStackTrace();
        }
    }
}

你们可以查看我的代码并告诉我我可以做些什么来避免NullPointerException吗?我现在真的很沮丧。谢谢!

P.S。你们中的一些人回答了有关异常的线上方的线路。当我尝试在secondaryElement元素中打印出testAttribute值时发生异常。

2 个答案:

答案 0 :(得分:1)

getElementByID不是你想象的那样,因此返回null(没有id =“...”属性)。

答案 1 :(得分:1)

快速回答是您的secondElement为空。原因是因为您没有id="secondElement"的元素。您的代码希望文档包含类似

的内容
<myelement id="secondElement">...</myelement>