使用 getResource() 获取资源
我需要在java项目中获取资源图像文件。我正在做的是:
URL url = TestGameTable.class.getClass().
getClassLoader().getResource("unibo.lsb.res/dice.jpg");
目录结构如下:
unibo/
lsb/
res/
dice.jpg
test/
..../ /* other packages */
事实上,我总是得到文件不存在的信息。我尝试了很多不同的路径,但无法解决问题。 有什么提示吗?
I need to get a resource image file in a java project. What I'm doing is:
URL url = TestGameTable.class.getClass().
getClassLoader().getResource("unibo.lsb.res/dice.jpg");
The directory structure is the following:
unibo/
lsb/
res/
dice.jpg
test/
..../ /* other packages */
The fact is that I always get as the file doesn't exist. I have tried many different paths, but I couldn't solve the issue.
Any hint?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
getResource()
。getResource()
directly on the class.您可以使用而不是显式编写类名
Instead of explicitly writing the class name you could use
如果您从
static
方法调用,请使用:if you are calling from
static
method, use :要记住的一件事是,这里的相关路径是相对于类的文件系统位置的路径...在您的例子中是 TestGameTable.class。它与 TestGameTable.java 文件的位置无关。
我在这里留下了更详细的答案... 资源实际位于哪里
One thing to keep in mind is that the relevant path here is the path relative to the file system location of your class... in your case TestGameTable.class. It is not related to the location of the TestGameTable.java file.
I left a more detailed answer here... where is resource actually located