Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将所有代码编译到一个 jar 文件中,但是我需要包含许多图像。Java 不包括它们,我尝试了很多不同的方法,但大多数都不适合 GImage 对象。有没有办法包含这些,还是我需要切换到图标对象?
我无法真正理解 Gimage 的含义。但我可以通过以下方法从 jar 文件中读取图像:
java.net.URL imageURL = getClass().getResource("bomb0.png"); ImageIcon bomb0 = new ImageIcon(imageURL);
然后你可以:
GImage image = new GImage(bomb0.getImage());
如果你觉得这个方法没问题,你可以做个测试;-)