JSP中properties文件的路径问题

来源:互联网 发布:淘宝商品sku设置规则 编辑:程序博客网 时间:2024/05/24 01:42

做练习的时候,写了个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);    }
原创粉丝点击