java如何加载properties文件
Properties props = new Properties();InputStream in = ConnectionManager.class.getResourceAsStream("/jdbc.properties");props.load(in);in.close();