Java文件uri与xml文件空指针异常

发布于 2024-11-14 21:45:26 字数 1062 浏览 3 评论 0原文

我使用的是Windows操作系统, 并想要解析 xml 文件,但出现空指针错误...

    public void print( )
    throws SAXException, IOException {

             DocumentBuilder builder;

            Document document = builder.parse( "D:\\my\\xml.xml");//null pointer exception

}

这是解决方案:

public class DOMPrinter {

         private DocumentBuilder builder;


        public void print(String fileName )//, PrintStream out)
                throws SAXException, IOException {

            try
            {
                DocumentBuilderFactory fact= DocumentBuilderFactory.newInstance();

                builder= fact.newDocumentBuilder();

            Document document = builder.parse( fileName);

            Node node = document.getDocumentElement();
              String root = node.getNodeName();
              System.out.println("Root Node: " + root);

            }
            catch (Exception e) {
                // TODO: handle exception
            }
}

我没有使用 DocumentBuilderFactory 来创建 DocumentBuilder ,所以这是一个错误。

I am using windows OS,
and want to parse xml file, but get null pointer error....

    public void print( )
    throws SAXException, IOException {

             DocumentBuilder builder;

            Document document = builder.parse( "D:\\my\\xml.xml");//null pointer exception

}

here is the solution:

public class DOMPrinter {

         private DocumentBuilder builder;


        public void print(String fileName )//, PrintStream out)
                throws SAXException, IOException {

            try
            {
                DocumentBuilderFactory fact= DocumentBuilderFactory.newInstance();

                builder= fact.newDocumentBuilder();

            Document document = builder.parse( fileName);

            Node node = document.getDocumentElement();
              String root = node.getNodeName();
              System.out.println("Root Node: " + root);

            }
            catch (Exception e) {
                // TODO: handle exception
            }
}

I didn't use DocumentBuilderFactory to create DocumentBuilder , so that was a error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏有森光若流苏 2024-11-21 21:45:28

您从未实例化builder。你需要说 builder = ...;

另外,方法内不能有私有字段。删除 private 关键字。

You never instantiated builder. You need to say builder = ...;

Also, you can't have private fields inside a method. Delete the private keyword.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文