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