gpt4 book ai didi

java - 找不到资源java

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

我正在使用 lwjgl 和 slick2D 库以及 maven 构建工具用 Java 构建塔防游戏。

我收到一个 RuntimeException,因为找不到资源 pictures/dirt.png。我已经仔细检查了路径以及与错误可能链接到的代码行相关的所有内容,但我被卡住了。

下面是我的项目的层次结构图,其中包含所有图片和错误。

我尚未发现此问题,因此我寻求帮助。

enter image description here

这是我收到错误的输出图片。

enter image description here

最后,加载图片的方法就在这里。

enter image description here

这是我的主要方法以及我调用这些方法的类。

enter image description here

这里是 Maven 类,以防万一。 enter image description here

最佳答案

Maven需要知道要打包哪些资源。对于您的情况,我建议更新您的 pom.xml 为 Maven 添加资源指令,以包含图像、文本等资源文件。

编辑更新在知道 PNG 文件的确切位置后添加了目录。

<project>
...
<build>
...
<resources>
<resource>
<directory>src/main/java/pictures</directory>
<includes>
<include>**/*.png</include>
</includes>
</resource>
</resources>
...
</build>
...
</project>

关于java - 找不到资源java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50008050/

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