论坛首页 Java企业应用论坛

利用properties读取配制文件示例

浏览 1659 次
精华帖 (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
论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics