• java 读取properties文件


    在实际开发工作中,我们又是会将一些路径文件配置放在properties文件中,这样我们需要修改路径的时候就只需要写该一下配置文件就行了,不需要在代码中挨个挨个的去改。但是我们怎样获得配置文件中的值呢?其实这个很简单,我们只需要封装如下一个工具类就行了:

    public class UrlUtil {
        private static Properties config = null;
    
         static {
              InputStream in = UrlUtil.class.getClassLoader().getResourceAsStream("url.properties");
              config = new Properties();     
               try {
                config.load(in);
                in.close();
              } catch (IOException e) {
                //读取url.properties出错
                e.printStackTrace();
             }  
         }
         
          /**
           * 通过键获得对应的值
           * @param key
           * @return
           */
         public static String getValue(String key) {
          try {
           String value = config.getProperty(key);
           return value.trim();
          } catch (Exception e) {
           e.printStackTrace(); 
           return null;
          }
         }
    
         /**
          * 读取properties的全部信息*/
         public static void getAllProperties() {
          try {
           Enumeration en = config.propertyNames();
           while (en.hasMoreElements()) {
            String key = (String) en.nextElement();
            String Property = config.getProperty(key);
           }
          } catch (Exception e) {
            e.printStackTrace();
            System.err.println("ConfigInfoError" + e.toString());
          }
         }
         public static void main(String args[]) {
          
         }
    }

    代码中的url.properties就是我们放置路径的配置文件。比如我们的url.properties中有个图片路径:imgPath=c:/images

    我们要取得这个值只需要使用:UrlUtil.getValue("imgPath")就行了。

  • 相关阅读:
    linux下inotifytools+rsync进行文件同步的使用
    进程间的通讯(IPC)方式
    is_writable的php实现
    PHP IPC函数介绍消息队列
    PHP实现多进程并行执行脚本
    PHP IPC函数介绍共享内存
    不同语言从shell管道获取数据的方法
    解决phpredis 'RedisException' with message 'read error on connection'
    beanstalkd的安装
    haproxy对redis进行负载均衡
  • 原文地址:https://www.cnblogs.com/mouseIT/p/4193982.html
Copyright © 2020-2023  润新知