// cls是配置文件名称, name是配置文件内定义的变量名
public static String getProperty(String cls, String name)
{
Properties p = init(cls);;
if (p != null)
{
return p.getProperty(name);
}
return null;
}
// cls是配置文件名称, name是配置文件内定义的变量名
public static String getProperty(String cls, String name)
{
Properties p = init(cls);;
if (p != null)
{
return p.getProperty(name);
}
return null;
}