要讀取config目錄下的配置文件,可以使用Java中的Properties類來實現。
首先,需要通過類加載器獲取到配置文件的輸入流。假設配置文件的名字是config.properties,可以使用以下代碼獲取到輸入流:
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("config/config.properties");
接下來,可以使用Properties類加載輸入流,并讀取配置文件中的內容:
Properties properties = new Properties();
properties.load(inputStream);
現在,配置文件中的內容已經加載到Properties對象中了。可以通過getProperty()方法來獲取配置項的值:
String configValue = properties.getProperty("config.key");
其中,config.key是配置項的鍵值。
完整的代碼示例:
import java.io.InputStream;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
try {
// 獲取配置文件的輸入流
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("config/config.properties");
// 加載配置文件
Properties properties = new Properties();
properties.load(inputStream);
// 讀取配置項的值
String configValue = properties.getProperty("config.key");
System.out.println("配置項的值是:" + configValue);
// 關閉輸入流
inputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
請確保配置文件config.properties位于config目錄下,并且在類路徑中可訪問到。