>>930 public class Environment {
private static Properties Property = null;
public static String getStringVal(String key) {
load();
return Property.getProperty(key);
}
public static int getIntVal(String key, int def) {
load();
String val = Property.getProperty(key);
return NumberUtils.stringToInt(val, def);
}