jar包里的类文件访问jar包里的XML文件

今天开发时遇到一个问题,是一个关于java类读取XML出错的问题,想了好久才搞定的,所以发出来与喜欢的朋友分享。下面这段,在MyEclipse下运行,是不会有问题的,但如果打成jar包后就显示找不到文件:
String xmlPath = this.getClass().getResource("").getPath()+"persistence.xml";//我的persistence.xml和当前类文件在一个目录下
//建立一个解析器工厂
DocumentBuilderFactory factory =DocumentBuilderFactory.newInstance();
//获得一个具体的解析对象
DocumentBuilder builder=factory.newDocumentBuilder();
//返回一个Document对象
Document doc=builder.parse(new File(xmlPath));
//得到一个NodeList对象
NodeList nl = doc.getElementsByTagName("persion");

所以正确的访问方式是下面写的,在MyEclipse和jar包中访问都不会出错:
InputStream xmlPath = this.getClass().getResourceAsStream("persistence.xml");//我的persistence.xml和当前类文件在一个目录下
//建立一个解析器工厂
DocumentBuilderFactory factory =DocumentBuilderFactory.newInstance();
//获得一个具体的解析对象
DocumentBuilder builder=factory.newDocumentBuilder();
//返回一个Document对象
Document doc=builder.parse(xmlPath);
//得到一个NodeList对象
NodeList nl = doc.getElementsByTagName("persion");

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值