javajframe插入图片
时间: 2023-10-30 19:09:39 浏览: 96
java中插入图片
您可以使用JLabel来显示图片,然后将JLabel添加到JFrame中。以下是一个简单的示例代码:
```java
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class Main {
public static void main(String[] args) {
JFrame frame = new JFrame("显示图片");
ImageIcon icon = new ImageIcon("image.jpg"); // 图片路径
JLabel label = new JLabel(icon);
frame.add(label);
frame.pack();
frame.setVisible(true);
}
}
```
请注意,这里的图片路径是相对于当前工作目录的。如果您的图片不在当前工作目录中,您需要提供完整的路径。
阅读全文