XML文件提取 - 相对路径不起作用

时间:2011-10-18 05:41:36

标签: xml file path relative

搜索真的很累,它充斥着这些问题。我想:

InputStream inputStream =  DBconnection.class.getResourceAsStream("com.xxx.xxxxx.internal.props.xml");      
Properties properties = new Properties();

properties.loadFromXML(inputStream);

抛出空指针异常

文件位于com \ xxx \ xxxxx \ internal \ props.xml下 我试过点,斜线,我做了搜索,我试着理解 - http://www.javaworld.com/javaworld/javaqa/2003-08/01-qa-0808-property.html?page=2 ,完全糊涂了。

1 个答案:

答案 0 :(得分:1)

为什么不尝试使用“/com/xxx/xxxxx/internal/props.xml”。或者只是“props.xml”,如果DBConnection与xml文件位于同一个包中。