我正在尝试读取配置文件,并且想在某些代数运算中使用该属性值。所以我需要将返回的字符串转换prop.getProperty(String str)
为整数。
我尝试使用以下方法转换它:
1.)
Integer value = null;
String string = getProperty(key);
if (string != null)
value = new Integer(string);
return value;
2.)
String noofdivs = prop.getProperty("NO_OF_INITIAL_DIVS");
Integer noOfInitialDivs = Integer.valueOf(noofdivs);
3.)
String xyz = prop.getProperty("NO_OF_LINES_IN_A_DIV");
Integer noOfLinesInDiv = Integer.getInteger(xyz);
但他们都没有工作。
有人可以帮我解决这个问题吗?