在body里面这样写:
你插入的图片代码呢?
this.setBackground(Color.blue); 这一句是设置背景色
比如,你设置按钮的背景色:
JButton but = new JButton("按钮");
but.setBackground(Color.blue);
如果你想改变窗体(JFrame)的背景色,你用this.setBackground(...)没用。
你必须重载paintComponent()方法
public void paintComponent(Graphics g)
{
在这里重缓窗体的背景色,也可以在这里缓制窗体的背景图片。
}
我不知道你是怎么个不能正常显示?截个图啊什么的,至少描述一下吧。。。
代码看下。