アップロードした画像を画像配列に変更するたびに、前の画像の横に画像が描画されます。次の選択した画像を最初の画像の上に表示するにはどうすればよいですか?
ImageImplement panel = new ImageImplement(new ImageIcon(images[0]).getImage());
add(panel);
getContentPane().setLocation(200, 0);
setVisible(true);
setSize(800,700);
setDefaultCloseOperation(EXIT_ON_CLOSE);
getContentPane().setBackground(Color.black);