java中properties配置文件如何使用

avatar
作者
猴君
阅读量:2

在Java中,可以使用Properties类来读取和写入配置文件,配置文件通常是以.properties文件格式保存的。

  1. 读取配置文件:

首先,创建一个Properties对象,并使用其load()方法加载配置文件。load()方法接受一个InputStream对象作为参数,可以使用FileInputStream或者ClassLoader来获取配置文件的输入流。例如:

Properties prop = new Properties(); try (InputStream input = new FileInputStream("config.properties")) { prop.load(input); } catch (IOException ex) { ex.printStackTrace(); } 

在加载完成后,可以使用getProperty()方法来获取配置文件中的属性值。例如:

String url = prop.getProperty("url"); String username = prop.getProperty("username"); String password = prop.getProperty("password"); 
  1. 写入配置文件:

首先,创建一个Properties对象,并使用其setProperty()方法来设置属性值。例如:

Properties prop = new Properties(); prop.setProperty("url", "jdbc:mysql://localhost:3306/mydb"); prop.setProperty("username", "root"); prop.setProperty("password", "password"); 

然后,创建一个OutputStream对象,并使用Properties的store()方法将属性值写入配置文件。store()方法接受一个OutputStream对象和一个注释作为参数。例如:

try (OutputStream output = new FileOutputStream("config.properties")) { prop.store(output, "This is a sample config file"); } catch (IOException ex) { ex.printStackTrace(); } 

注意:在写入配置文件时,如果指定的配置文件不存在,store()方法会自动创建一个新的配置文件。如果配置文件已存在,store()方法会将原有的配置项替换为新的配置项。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!