共计 664 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用以下代码读取 JAR 包中的配置文件:
import java.io.InputStream;
import java.util.Properties;
public class ReadConfigFile {public static void main(String[] args) {
try {
// 读取 JAR 包中的配置文件
InputStream inputStream = ReadConfigFile.class.getResourceAsStream("/config.properties");
// 创建 Properties 对象
Properties properties = new Properties();
// 加载配置文件
properties.load(inputStream);
// 获取配置项的值
String value = properties.getProperty("key");
System.out.println("Value:" + value);
// 关闭输入流
inputStream.close();} catch (Exception e) {e.printStackTrace();
}
}
}
上述代码中,ReadConfigFile
类通过 getResourceAsStream
方法获取 JAR 包中的配置文件 config.properties
的输入流。然后使用 Properties
对象加载配置文件,并通过 getProperty
方法获取配置项的值。
请注意,要使用绝对路径来指定 JAR 包中的配置文件,即以 /
开头。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-20