读取属性公共类

package com.framework.base.common.properties;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
 *
 * <p>读取属性公共类</p>
 */
public class CommonConfiguration {
   
    private final static transient Log log = LogFactory.getLog(CommonConfiguration.class);
   
    private final static Properties properties  = new Properties() ;
   
    static void init(){//D:\opt\froad\config\boss
        FileInputStream fileInputStream = null;
        try{
            StringBuilder stringBuilder = new StringBuilder();
            String separator = File.separator;
            stringBuilder.append(separator).append("opt").append(separator).append("froad").append(separator).append("config")
            .append(separator).append("boss").append(separator).append("context.properties");
            fileInputStream = new FileInputStream(new File(stringBuilder.toString()));
            properties.load(fileInputStream);
        }catch (Exception e) {
            log.error("-----------------加载properties失败---------------"+e.getMessage());
        }finally{
            if(fileInputStream != null){
                try {
                    fileInputStream.close();
                } catch (IOException e) {
                    fileInputStream = null;
                }
            }
        }
    }
   
    public static void main(String args[]){
        //init();
        System.out.println("aaa:"+CommonConfiguration.getStrProperties("sysUrl"));
    }
   
    static{
        init();
    }
   
    /**
     * 获取value值
     * @param key
     * @return
       * @param <E>
     * @see
     */
    public  static String getStrProperties(String key) {
        String value = properties.getProperty(key);
        if(value == null ) {
            value = "";
        }
        return value ;
    }
    /**
     * 获取value值
     * @param key
     * @return
     * @param <E>
     * @see
     */
    public static Integer getIntProperties(String key) {
        String value = properties.getProperty(key);
        if(value == null ) {
            value = "10";
        }
        return Integer.valueOf(value) ;
    }
   
   
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值