当前位置: 代码迷 >> J2EE >> 读取WEB-INF上的xml有关问题
  详细解决方案

读取WEB-INF上的xml有关问题

热度:26   发布时间:2016-04-22 00:13:13.0
读取WEB-INF下的xml问题
try {
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
InputStream flie = this.getClass().getResourceAsStream(
"WEB-INF/sac-price.xml");
Document doc = db.parse(flie);
} catch (Exception e) {
System.out.println(e.getMessage());
throw e;
}
catch抓住的错误是:InputStream cannot be null


检查了WEB-INF下面存在sac-price.xml

请问高手这是为啥????
也请教更好的方法。。。
------解决方案--------------------
没人知道么?
  相关解决方案