gpt4 book ai didi

java - getResource() -> 未找到源

转载 作者:行者123 更新时间:2023-11-29 07:17:20 25 4
gpt4 key购买 nike

我正在学习教程 here .该文件位于项目的同一根文件夹中。当它在 src 文件夹和同一个包文件夹中时,我已经尝试过这样做。这 3 个位置都不起作用。

具体的代码行是:

ImageIcon ii = new ImageIcon(this.getClass().getResource("bardejov.jpg"));

知道我做错了什么吗?

最佳答案

// absolute from the classpath
MyClass.class.getResource("/myfolder/abc.txt");
// relative to the class location
MyClass.class.getResource("abc.txt");
// another relative to the class location
MyClass.class.getResource("myfolder/abc.txt");

关于java - getResource() -> 未找到源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8483731/

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