在Java中,可以使用java.util.Properties
類來讀取Properties文件。下面是一個簡單的示例代碼:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class Main {
public static void main(String[] args) {
Properties properties = new Properties();
try {
FileInputStream file = new FileInputStream("config.properties");
properties.load(file);
file.close();
} catch (IOException e) {
e.printStackTrace();
}
String value = properties.getProperty("key");
System.out.println("Value for key: " + value);
}
}
在上面的示例中,首先創建了一個Properties
對象,然后通過FileInputStream
類加載Properties文件并使用load
方法將文件中的屬性加載到Properties
對象中。最后,可以使用getProperty
方法獲取文件中指定屬性的值。