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

得到属性文件信息

时间:2014-06-11 11:38:39      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

bubuko.com,布布扣
/**
     * 得到属性文件信息
     * 
     * @param key
     * @return
     */
    public static String getPropertiesByKey(String key) {
        InputStream in=null;
        try {  
  
              in = new ToolsClass().getClass().getResourceAsStream(
                    "/jajnInfo.properties");
            Properties xie = new Properties();
            xie.load(in);// 加载数据流
            return xie.getProperty(key);

        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
        finally{
            if(null!=in)
                try {
                    in.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            
        }
    }
    
bubuko.com,布布扣

使用getPropertiesByKey(key关键字); 如: getPropertiesByKey("mail.smtp.host");

bubuko.com,布布扣

得到属性文件信息,布布扣,bubuko.com

得到属性文件信息

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/W203654/p/3772771.html

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