首页 > 其他 > 详细

【随时记录的一些东东】

时间:2017-02-26 22:31:35      阅读:211      评论:0      收藏:0      [点我收藏+]

 

 

 

1:获取配置文件:

public class PropertiesUtil {
    private static Properties properties = new Properties();
    static {
        InputStream in = PropertiesUtil.class.getResourceAsStream("/config.properties");
        try {
            properties.load(in);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    public static String get(String key) { 
        String value = properties.getProperty(key);
        if(value != null){
            value = value.trim();
        }
        return value;
    } 
}

方框里面的都是虚拟的类路径,编译成class文件以后,在classes目录下:以包名来展示:

技术分享

 

技术分享

 

技术分享

 

2:

 

 

 

 

 

   privatestatic Properties properties = new Properties();

   static {

      InputStream in = PropertiesUtil.class.getResourceAsStream("/config.properties");

      try {

         properties.load(in);

      } catch (IOException e) {

         e.printStackTrace();

      }

   }

    publicstatic String get(String key) { 

       String value = properties.getProperty(key);

       if(value != null){

          value = value.trim();

       }

       return value;

    } 

【随时记录的一些东东】

原文:http://www.cnblogs.com/yangjian-java/p/6446121.html

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