文章列表
/**
* 获取配置文件中的设置字段
*
* @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 {
...