在Java中,可以使用Properties
類來讀取配置文件。以下是一個簡單的示例:
config.properties
,內容如下:name=John
age=25
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();
FileInputStream input = null;
try {
input = new FileInputStream("config.properties");
properties.load(input);
// 讀取配置文件中的屬性值
String name = properties.getProperty("name");
String age = properties.getProperty("age");
System.out.println("name: " + name);
System.out.println("age: " + age);
} catch (IOException e) {
e.printStackTrace();
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
在上述代碼中,首先創建了一個Properties
對象,然后使用FileInputStream
來加載配置文件。接下來,使用load()
方法將配置文件加載到Properties
對象中。最后,使用getProperty()
方法獲取配置文件中的屬性值。