首页 > 代码库 > 读取配置文件
读取配置文件
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; } }
读取配置文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。