首页 > 其他 > 详细

通过配置文件的key得值

时间:2018-06-06 20:40:10      阅读:174      评论:0      收藏:0      [点我收藏+]
    public static String TM_API_SERVER_HOST = PropertiesUtil.getProperty("config/im.properties", "TIM_HOST");

    public static String getProperty(String resource, String key) {
        Properties properties = PropertiesUtil.getProperties(resource);
        return properties.getProperty(key);
    }

    /**
     * 读取properties文件
     * 
     * @param resource
     *            文件名称
     * @return
     */
    public static Properties getProperties(String resource) {

        Properties properties = new Properties();
        try {
            InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream

            (resource);
            properties.load(is);
        } catch (IOException ioe) {
            ioe.printStackTrace();
            throw new RuntimeException(ioe);
        }
        return properties;
    }

 

通过配置文件的key得值

原文:https://www.cnblogs.com/wwwcf1982603555/p/9146460.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!