阅读量: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"
。如果配置文件位于其他位置,需要指定完整的文件路径。