Ejemplo n.º 1
0
 /** 获取 int 类型的属性值(可指定默认值) */
 public static int getInt(String key, int defaultValue) {
   return PropsUtil.getNumber(configProps, key, defaultValue);
 }
Ejemplo n.º 2
0
 /** 获取 int 类型的属性值 */
 public static int getInt(String key) {
   return PropsUtil.getNumber(configProps, key);
 }