浏览 1659 次
锁定老帖子 主题:利用properties读取配制文件示例
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2011-04-20
最后修改:2011-04-20
public class PropertUtil { private static Properties prop; public static void main(String args[]) throws IOException { test(); } /** * 进行读取properties配制文件的测试 * * @throws IOException */ public static void test() throws IOException { File file = new File("src//dbsources.properties"); InputStream is = new FileInputStream(file); // 创建读取properties配制文件的对象 prop = new Properties(); prop.load(is); // 打印配制文件中的信息 System.out.println(prop.getProperty("driverClass").trim()); System.out.println(prop.getProperty("jdbcUrl").trim()); System.out.println(prop.getProperty("user").trim()); System.out.println(prop.getProperty("password").trim()); System.out.println(Integer.parseInt((prop .getProperty("acquireIncrement").trim()))); } } dbsources.properties配制文件 driverClass=oracle.jdbc.OracleDriver jdbcUrl=jdbc\:oracle\:thin\:@162.16.1.122\:1521\:acsdb user=develop password=develop acquireIncrement=3 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |