码迷,mamicode.com
首页 > 其他好文 > 详细

获取项目中Properties文件

时间:2015-09-02 14:48:30      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

在web项目中读取Properties文件配置:

properties文件内容:

技术分享
name=tom
password=12345
View Code

 

1、使用 类名.class.getResourceAsStream()

private void readPropertiesByClass() {
        // 根目录是class文件所在目录,如果以 /开头从classpath目录中找db.properties;如果不以/开头从当前类所在的包中找
        InputStream inputStream = ReadPropertiesServlet.class
                .getResourceAsStream("/db.properties");
        Properties properties = new Properties();
        try {
            // 加载
            properties.load(inputStream);
            // getProperty()方法内部调用get()并将返回结果包装成String类型
            String name = properties.getProperty("name");
            System.out.println(name);
            System.out.println(properties.get("name"));// 返回Object类型
            // 失败,因为写入properties文件中的数据是以String类型存储的
            // int i = (int)properties.get("password");
            // System.out.println(i + 1);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 

2、使用ServletContext#getResourceAsStream()

private void readPropertiesByServletContext() {
        // ServletContext方法读取配置 / 代表WebProject工程名,同级不需‘/‘
        ServletContext servletContext = getServletContext();
        InputStream inputStream = servletContext.getResourceAsStream("db.properties");
        Properties properties = new Properties();
        try {
            properties.load(inputStream);
            System.out.println(properties.getProperty("name"));
            System.out.println(properties.getProperty("password"));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 

3.使用ClassLoader加载配置文件

private void readPropertiesByClassLoader() {
        // 使用ClassLoader加载配置文件
        // 项目目录: web3\WEB-INF\classes
        ClassLoader classLoader = ReadPropertiesServlet.class.getClassLoader();
        // 上级目录:../
        InputStream inputStream = classLoader
                .getResourceAsStream("../../db.properties");
        // 获取Properties实例的两种方法
        // Properties properties = new Properties();
        Properties properties = System.getProperties();
        try {
            properties.load(inputStream);
            System.out.println(properties.getProperty("name"));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 

获取项目中Properties文件

标签:

原文地址:http://www.cnblogs.com/mada0/p/4778514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!