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.
我正在尝试使用ImageIconJava Swing 来为简单的Java游戏提供动力。我想了解如何从项目文件夹中的 Eclipse 工作区调用相对文件路径?可用于在 eclipse 中为图像资源实现相对文件路径的代码是什么?
ImageIcon
Java
采用:
getClass().getResource()
像这样的东西:
jLabel1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/images.jpg")));
如果images在您的项目文件夹中。
images