共计 1033 个字符,预计需要花费 3 分钟才能阅读完成。
要读取 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 目录下,并且在类路径中可访问到。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-20