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

通过配置文件的key得值

时间:2018-06-06 22:22:47      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:server   tac   catch   current   exception   public   NPU   input   @param   

    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得值

标签:server   tac   catch   current   exception   public   NPU   input   @param   

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

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