首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

dom4j问题:org.dom4j.DocumentException: null Nested exception: null

2014-01-26 
File file new File(E:\\config.xml)Document doc nulltry{doc new SAXReader().read(file)}cat

File file = new File("E:\\config.xml");
  Document doc = null;
  try
  {
  doc = new SAXReader().read(file);
  }
  catch (Exception e)
  {
  e.printStackTrace();
  }
 
  同是这段代码,在一个独立的类的main方法里,运行起来没有问题,但是放在struts的一个action里,却报以下错误:
  org.dom4j.DocumentException: null Nested exception: null
 
  为什么啊?
 

------解决方法--------------------------------------------------------
xml的格式出错了,你用ie把那个xml打开看是不是报错。

        

热点排行