java怎么读取properties配置文件

avatar
作者
筋斗云
阅读量:1

在Java中,可以使用java.util.Properties类来读取.properties配置文件。下面是一个简单的示例代码:

import java.io.FileInputStream; import java.io.IOException; import java.util.Properties; public class PropertiesReader { public static void main(String[] args) { Properties properties = new Properties(); try { // 读取配置文件 FileInputStream fis = new FileInputStream("config.properties"); properties.load(fis); // 获取配置项的值 String username = properties.getProperty("username"); String password = properties.getProperty("password"); System.out.println("Username: " + username); System.out.println("Password: " + password); fis.close(); } catch (IOException e) { e.printStackTrace(); } } } 

在上面的示例中,假设我们有一个名为config.properties的配置文件,内容如下:

username=admin password=123456 

通过FileInputStream类加载文件流,并使用load()方法将配置文件加载到Properties对象中。然后,可以使用getProperty()方法获取配置项的值。

请注意,需要提供正确的配置文件路径。如果配置文件位于项目的根目录下,则可以使用相对路径,如上述示例中的"config.properties"。如果配置文件位于其他位置,需要指定完整的文件路径。

广告一刻

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