public
class
SQLUtil {
/**
* 加载.properties配置文件
*
* @param file
* @return
*/
public
static
Properties loadConfig(String file) {
Properties properties =
new
Properties();
try
{
properties.load(ClassLoader.getSystemResourceAsStream(file));
return
properties;
}
catch
(IOException e) {
throw
new
RuntimeException(e);
}
}
}