propertyMsg =字段{0}中的值无效:{1}
我抛出了一个异常:
抛出ServiceException.FAILURE(“字段currencyvalue中的值无效:” + currencyName,“ propertyMsg {currencyvalue},{” + currencyName +“}”“,false);
但是我得到的输出如下:
货币字段值无效:{1}
答案 0 :(得分:0)
以以下格式将参数存储在属性文件中
属性1 =值1 Property2 = value2
然后在Java中使用以下代码
FileInputStream fis=new FileInputStream("filepath");
Properties prop=new properties();
Prop.load(fis);
然后您可以通过使用参数
Prop.get("parameter_name);