ServletContex获取文件内容路径学习笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ServletContex获取文件内容路径学习笔记相关的知识,希望对你有一定的参考价值。
如果以ServletContext方式读取资源文件(txt/xml/properties),是相对于web服务器的当前web应用目录而言
此时/表示:当前web应用
第一种方法
`import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class Emaldome4 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
ServletContext context = this.getServletContext();
InputStream is = context.getResourceAsStream("/res/config.properties");
Properties props = new Properties();
props.load(is);
System.out.println(props.getProperty("email"));
}
}`
访问:
http://localhost:8080/day04/Emaldome4
结果:
第二种方法:
类加载器只能加载IDE工具下src目录下的资源文件,其它目录无法加载
此时/表示:/WEB-INF/classes/目录
//通过类加载器加载src/config.properteis资源文件
//取得当前对象的字节码对象
Class clazz = this.getClass();
//取得当前对象的类加载器
ClassLoader cl = clazz.getClassLoader();
//
InputStream is = cl.getResourceAsStream("/cn/config/config.properties");
Properties props = new Properties();
props.load(is);
System.out.println(props.getProperty("email"));
以上是关于ServletContex获取文件内容路径学习笔记的主要内容,如果未能解决你的问题,请参考以下文章