gpt4 book ai didi

java - Jar 未加载资源文件

转载 作者:行者123 更新时间:2023-12-02 02:03:16 24 4
gpt4 key购买 nike

我有一个项目,其中包含“src/main/resources”文件夹,其中包含 hibernate 配置文件,我使用这行代码加载它

HibernateUtil.class.getResource("/hibernate.cgf.xml").getPath()

从 IDE 内部它运行良好,但是当我创建 jar 时它不会归档该文件。

如何才能将其正确加载到 jar 文件中?

谢谢

最佳答案

你能试试这个吗:

ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("fileName").getFile());

关于java - Jar 未加载资源文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51242580/

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