朋友,我尝试使用seticon方法将图像添加到我的Jbutton中,但是它会隐藏按钮上的文本标签。这是代码:
try {
Image img = ImageIO.read(getClass().getResource("image.jpg"));
studentsButton.setIcon(new ImageIcon(img));
} catch (IOException ex) {
}
我在eclipse中使用swing而不使用init()/ paint()/ graphics,它是main方法中的简单框架。
相关分类