在窗口应用程序中将图像添加到contentpane

时间:2011-12-13 22:08:35

标签: java image swing

如何在我的ContentPane窗口容器中添加,设置可见和装入我的“images / name.jpg”?

public class WindowName extends JFrame
{
    public WindowName()
    {
        JFrame Window = new JFrame(); 
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setTitle("...");
        setSize(700, 600);  
        setVisible(true);
        Container powZawartosci = getContentPane();
        powZawartosci.setLayout(null);
    }
}

1 个答案:

答案 0 :(得分:3)

只需将JLabel添加到内容窗格即可。请参阅How to Use Icons