使用多个面板将图像添加到JFrame内的JPanel

时间:2011-08-16 15:47:00

标签: java image swing jar jpanel

我将图像直接添加到jframe上,但如果我添加另一个面板,图像会消失, 我试图将图像添加到标签并将其添加到面板但这不起作用这里是我的代码用于获取我的图像:

这是我更新的程序:

    public class imgload extends JFrame implements ActionListener {

        private JButton b1;

        public imgload() {    
            makeframe();     
        }

        public void makeframe() {
         JFrame f = new JFrame();
         JPanel p1 = new JPanel();
         JPanel p2 = new JPanel();
         JLabel lb = new JLabel();
         b1 = new JButton("Confirm");
         b1.addActionListener(this);
         JTextArea q1 = new JTextArea();
         ImageIcon icon = createImageIcon("sample.jpg");

         lb.setIcon(icon);
         q1.setLocation(10,10);
         q1.setSize(50,50);
         p2.add(q1);

         b1.setLocation(100,105);
         b1.setSize(80,30);
         p2.add(b1);

         f.add(p1.add(lb));
         // f.add(p2);
         f.setVisible(true);

         f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         f.setSize(800,600);
         f.setAlwaysOnTop(true);
         f.setResizable(false);
    }

        public ImageIcon createImageIcon(String path) {    
        URL imgURL = getClass().getResource(path);
        if (imgURL != null) {
            return new ImageIcon(imgURL);
        } else {
            System.err.println("Couldn't find file: " + path);
            return null;
        }
    }

    public void actionPerformed(ActionEvent e) {
        if(e.getSource() == b1) {
            System.exit(0);    
        }
    }

    public static void main(String[] args) {
        new imgload();
    }
}

1 个答案:

答案 0 :(得分:1)

你需要研究在Swing中使用布局(BorderLayout,FlowLayout,GridLayout,GridBagLayout等)。默认情况下,大多数东西都有BorderLayout,当你使用没有参数的add时,它会将项目放在中心。后续调用只需替换中心的项目。