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.
我在我的 Netbeans Java 项目中导入了一些图像。单击按钮时,我想将其中一个设置为标签的图标。我不想在代码中使用图像的路径。
请帮我。
如果您在项目中导入了图像,请使用:
myJLabel.setIcon(new javax.swing.ImageIcon(getClass().getResource("/yourImageName.jpg")));
并将其包含在该按钮的actionListener块中。
请参阅此以了解如何使用Jbutton.
Jbutton