gpt4 book ai didi

java - 通过代码从当前运行的 JAR 中提取文件

转载 作者:搜寻专家 更新时间:2023-10-30 21:17:03 26 4
gpt4 key购买 nike

是否有任何内置方法可以让用户从当前运行的 JAR 中提取文件并将其保存在磁盘上?

提前致谢。

最佳答案

File file = new File("newname.ext");
if (!file.exists()) {
InputStream link = (getClass().getResourceAsStream("/path/resources/filename.ext"));
Files.copy(link, file.getAbsoluteFile().toPath());
}

关于java - 通过代码从当前运行的 JAR 中提取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11472408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com