考虑两个属性文件:
.属性
bcd属性
我需要从bcd.properties中的.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
希望你明白我的问题。提前谢谢!
暂无答案!
目前还没有任何答案,快来回答吧!