方式一:
InputStream in = Test.class .getResourceAsStream("/env.properties"); URL url = Test.class.getResource("env.properties") ;
说明:env.properties文件在src的根目录下,文件名前有斜杠
方式二:
InputStream in = Test.class.getClassLoader() .getResourceAsStream("env.properties"); URL url = Test.class.getClassLoader().getResource("env.properties") ;
方式三:
InputStream in = Thread.currentThread().getContextClassLoader()
.getResourceAsStream("ExcelModeMappingl.xml");
用XmlDaoUtils类 获取src目录下的user.xml文件的 String 路径
private static String path = XmlDaoUtils.class.getClassLoader().getResource("users.xml").getPath();
方式四:
Resources.getResourceAsReader("SqlMapConfig.xml");