JButton在Java中设置按钮的指定图标
时间: 2024-02-11 17:05:26 浏览: 128
Java中JButton的使用
5星 · 资源好评率100%
要设置JButton的指定图标,可以使用setIcon()方法。具体步骤如下:
1. 创建一个ImageIcon对象,该对象包含要设置为按钮图标的图像文件的路径。
2. 创建JButton对象。
3. 调用JButton对象的setIcon()方法,并将ImageIcon对象作为参数传递。
下面是示例代码:
```
ImageIcon icon = new ImageIcon("path/to/image/file.png");
JButton button = new JButton();
button.setIcon(icon);
```
请将"path/to/image/file.png"替换为实际的图像文件路径。
阅读全文