java如何加载properties文件
Properties props = new Properties();InputStream in = ConnectionManager.class.getResourceAsStream("/jdbc.properties");props.load(in);in.close(); 发布时间: 2013-12-20 17:03:19 作者: rapoo
java如何加载properties文件
Properties props = new Properties();InputStream in = ConnectionManager.class.getResourceAsStream("/jdbc.properties");props.load(in);in.close();