如何使用Properties配置文件

工具:eclipse(Myeclipse)
知识面:javase IO流/文件配置

1.步骤:创建Properties对象
2.创建文件路径
3.加载资源配置
4.关闭文件路径

5.使用加载资源对象properties调用getProperties()

配置文件的使用:#这个是驱动名
driver=oracle.jdbc.driver.OracleDriver
#这个是数据库路径
url=jdbc:oracle:thin:@<域名>.<端口>.
#这个是数据库用户名
username=xxx
#这个是数据库密码
password=xxx

//配置对象
		try {
		Properties properties = new Properties();
		//配置文件路径
		InputStream inStream 
			= PropertiesDemo.class.
				getClassLoader().
				getResourceAsStream(
				"com/csdn/jdbcdemo/date2017_11_12/propertis.txt");
		//加载资源配置	
		properties.load(inStream);
		
		//关闭配置文件路径
		inStream.close();
		
		//获取配置文件中的信息
		
		//获取驱动名
		String driver = properties.getProperty("driver");
		//获取路径
		String url = properties.getProperty("url");
		//获取用户名
		String username = properties.getProperty("username");
		//获取密码
		String password = properties.getProperty("password");
		
		System.out.println(driver+"\n"+url+"\n"+username+"\n"+password);
		
		
		} catch (IOException e) {
			e.printStackTrace();
		}


你可能感兴趣的:(JavaSE入门)