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

读取配置文件

时间:2014-11-17 12:38:00      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   java   for   文件   on   bs   ef   

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;
    }
}


读取配置文件

标签:io   ar   sp   java   for   文件   on   bs   ef   

原文地址:http://my.oschina.net/yangliu9420/blog/345419

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