我为我的学校设计了一个程序,只需点击一下按钮即可显示教师的日程安排。我已经弄明白了,但是如何通过点击特定的教师名称来打开图像。这是我的一些代码任何帮助表示赞赏。感谢
`JButton gabster = new JButton("Mrs. Gabster");
gabster.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JPanel gabster = new JPanel();
}
});`
我需要让按钮从我的工作区打开一个新图像
答案 0 :(得分:0)
public void actionPerformed(ActionEvent ae)
{
ImageIcon pic = new ImageIcon("picture.jpg");
JLabel picture = new JLabel(pic);
panel.add(picture);
}
创建一个单击按钮的方法。