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打开看是不是报错。