Java: Loading resources from the file system

后端 未结 5 465
臣服心动
臣服心动 2021-01-22 18:07

My Project Setup

I have the following project setup:

\\program.jar  
\\images\\logo.png

In my code, I reference th

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-22 18:20

    As Nelson mentioned, package them with your JAR (just copy them alongside your .class files), then you can find them via a simple this.getClass().getClassLoder().getResource("images/foo.png").

提交回复
热议问题