在Java中加載配置文件通常有以下幾種方法:
Properties
類:使用Properties
類可以方便地加載和讀取配置文件。可以通過load()
方法加載配置文件,然后通過getProperty()
方法獲取配置項的值。示例代碼如下:import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigLoader {
public static void main(String[] args) {
Properties properties = new Properties();
try {
properties.load(new FileInputStream("config.properties"));
String value = properties.getProperty("key");
System.out.println("Value: " + value);
} catch (IOException e) {
e.printStackTrace();
}
}
}
ClassLoader
:通過使用ClassLoader
可以從類路徑中加載配置文件。可以使用getResourceAsStream()
方法獲取配置文件的輸入流,并通過Properties
類進行解析。示例代碼如下:import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class ConfigLoader {
public static void main(String[] args) {
Properties properties = new Properties();
try (InputStream inputStream = ConfigLoader.class.getClassLoader().getResourceAsStream("config.properties")) {
properties.load(inputStream);
String value = properties.getProperty("key");
System.out.println("Value: " + value);
} catch (IOException e) {
e.printStackTrace();
}
}
}
ResourceBundle
類:ResourceBundle
類可以加載.properties
文件,并提供便捷的方法來獲取配置項的值。示例代碼如下:import java.util.ResourceBundle;
public class ConfigLoader {
public static void main(String[] args) {
ResourceBundle resourceBundle = ResourceBundle.getBundle("config");
String value = resourceBundle.getString("key");
System.out.println("Value: " + value);
}
}
無論使用哪種方法,都需要將配置文件放置在類路徑下,或者指定配置文件的絕對路徑。示例中的配置文件名為config.properties
,可以根據實際需要修改。