我在JAR
文件中有一个属性文件。
在我的网络应用程序中,我想从Web应用程序中的jsp
访问此属性文件。
我尝试使用以下代码执行此操作,但会生成FileNotFoundException
Properties properties = new Properties();
properties.load(new FileInputStream("myfile.properties"));
如何从jsp中JAR
classpath
内的scriptlets
访问该文件?
提前致谢。
答案 0 :(得分:2)
答案 1 :(得分:0)
是的,你可以使用
InputStream in = this.getClass().getClassLoader().getResourceAsStream("//myfile.properties");
确保具有此属性文件的jar文件位于类路径中。