JSP中properties文件的路径问题
程序员文章站
2022-04-16 22:12:39
...
做练习的时候,写了个properties文件,放在src/servlet/目录下,访问文件问题花了点时间折腾,最终得到解决,记下。
环境:eclipse jee oxygen,tomcat 9.0。
protected String getValue(String key) throws IOException {
Properties props = new Properties();
InputStream in = new BufferedInputStream(new FileInputStream(this.getServletContext().getRealPath("/") + "WEB-INF/classes/servlet/servlet.properties"));
props.load(in);
return props.getProperty(key);
}
上一篇: jsp文件引用路径的问题
下一篇: JSP上传问题的研究