问题描述
- abc.properties
- bcd.properties
我需要从bcd.properties中的abc.properties获取字符串。 使用CompositeConfiguration我得到了解决方案,但是在我的项目中不是通用解决方案。请提出一种使用ResourceBundle本身的方法。
分享我所做的事情:
ResourceBundle inStream = ResourceBundle.getBundle("bcd",Locale.US);
Properties test = new Properties();
String keys = inStream.getString("Email");
System.out.println("Result here "+keys);
abc.properties :
Email=Not a valid email address
bcd.properties :
include = abc.properties
//some strings
希望您能解决我的问题。 预先感谢!
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)