读取properties资源文件

来源:互联网 发布:国内域名使用 编辑:程序博客网 时间:2024/05/20 11:25

方法一:

在servlet中利用ServletContext对象读取配置文件

this.getServletContext().getResource("/WEB-INF/classes/db.properties");InputStream in = url.openStream();Properties prop = new Properties();prop.load(in);prop.getProperty

this.getServletContext().getRealPath("/WEB-INF/classes/db.properties");FileInputStream in = new FileInputStream(path);Properties prop = new Properties();prop.load(in);prop.getProperty

方法二:

在非servlet程序中如何读取配置文件:用类装载器

//为StudentDao类加载一个类装载器,然后去获得读取资源文件的流(有改动资源文件读取问题).class.getClassLoader().getResourceAsStream("db.properties");.class.getClassLoader().getResourceAsStream("cn/itcast/context/db.properties");

//用类装载方式读取,把资源当作url对待的方式很常见(解决了改动资源文件读取问题).class.getClassLoader().getResource("db.properties"); //获得虚拟路径.getPath(); //获得绝对路径new FileInputStream(path);prop.load(in);

0 0
原创粉丝点击