在Java中,可以使用java.util.Properties
類來讀取.properties
文件的內容。以下是一個示例代碼:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ReadPropertiesFile {
public static void main(String[] args) {
Properties properties = new Properties();
try {
// 通過文件輸入流加載properties文件
FileInputStream file = new FileInputStream("config.properties");
// 加載properties文件內容到Properties對象
properties.load(file);
// 關閉文件輸入流
file.close();
// 讀取properties文件中的屬性值
String username = properties.getProperty("username");
String password = properties.getProperty("password");
System.out.println("Username: " + username);
System.out.println("Password: " + password);
} catch (IOException e) {
e.printStackTrace();
}
}
}
請將上述代碼中的config.properties
替換為你要讀取的.properties
文件的路徑。然后,你可以通過getProperty
方法來讀取文件中的屬性值。