读取配置文件

import java.text.MessageFormat;
import java.util.Locale;
import java.util.ResourceBundle;

public class PropertyInfo {

    private static ResourceBundle resourceBundle;

    // 加载properties文件
    static {
        try {
            resourceBundle = ResourceBundle.getBundle("configuration/config", Locale.getDefault());
        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }

    // 获取key所对应的属性值
    public static String getValue(String key, Object[] paraArr) {
        if (key == null || "".equals(key.trim())) {
            return null;
        }
        String aKey = key.trim();
        String format = null;
        try {
            String value = resourceBundle.getString(aKey);
            format = (MessageFormat.format(value, paraArr)).trim();
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return format;
    }
}


你可能感兴趣的:(读取配置文件)