java 配置文件通用类_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java 配置文件通用类

java 配置文件通用类

 2013/11/20 12:38:18  源清之馨  程序员俱乐部  我要评论(0)
  • 摘要:/***获取配置文件中的设置字段**@authoryqzhilan**/publicclassPropertyUtils{staticStringpropertiesdir="connection.properties";staticPropertiespros=newProperties();publicstaticPropertiesgetProperties(StringconfigPath){Propertiespros=newProperties();try
  • 标签:配置文件 文件 配置 Java
/**
* 获取配置文件中的设置字段
*
* @author yqzhilan
*
*/
public class PropertyUtils {
static String propertiesdir = "connection.properties";
static Properties pros = new Properties();

public static Properties getProperties(String configPath) {
Properties pros = new Properties();
try {
ClassLoader cl = PropertyUtils.class.getClassLoader();
pros.load(cl.getResourceAsStream(configPath==null?propertiesdir:configPath.equals("")?propertiesdir:configPath));
} catch (IOException e) {
e.printStackTrace();
}
return pros;
}

public static void main(String[] args) {
Properties prop = PropertyUtils.getProperties("connection.properties");
System.out.println(prop.get("connecter.coin.username"));
}

}
上一篇: java开发软件安装 下一篇: 文件搜索
发表评论
用户名: 匿名