Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The first time a choose a image, it works just fine. But it does not work when I try to change it, the first image remains on the screen.

label = new JLabel("");
panel_1.add(label); 

btnAddImage = new JButton("Select Image");
btnAddImage.addMouseListener(new MouseAdapter() {
@Override
  public void mouseClicked(MouseEvent arg0) {
  File f = null ;
  fileChooser = new JFileChooser();
  fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
  int value = fileChooser.showOpenDialog(fileChooser);
  if (value == JFileChooser.APPROVE_OPTION)
  {
    f = fileChooser.getSelectedFile();
    if (f.exists())
    {
      inputImage_textField.setText(f.getName());        
      BufferedImage bi = getMyBuffImage();
      label = new JLabel(new ImageIcon(bi));
      label.setBounds(0, 68, 98, 92);
      panel_1.add(label);
      panel_1.repaint();
    }
   }
 }
});

Am I doing something wrong when I repaint or something else is the problem?

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

If you want to replace the existing label, replace

label = new JLabel(new ImageIcon(bi));
label.setBounds(0, 68, 98, 92);
panel_1.add(label);
panel_1.repaint();

with

label.setIcon(new ImageIcon(bi));
label.setBounds(0, 68, 98, 92);
panel_1.revalidate();

Or if you want to add a second label, just replace

label = new JLabel(new ImageIcon(bi));
label.setBounds(0, 68, 98, 92);
panel_1.add(label);
panel_1.repaint();

with

JLabel newLabel = new JLabel(new ImageIcon(bi));
label.setBounds(0, 68, 98, 92);
panel_1.add(newLabel);
panel_1.revalidate();
share|improve this answer
the first suggestion worked, thanks – Mara Jun 5 '11 at 14:53
if i use panel_1.revalidate() the image does not show at all – Mara Jun 5 '11 at 14:54
try with the edited code.. – Kristian Hellang Jun 5 '11 at 14:57
with the edited part i am back were i started, the image shows the first time only – Mara Jun 5 '11 at 15:05
1  
@Voo I'm not sure if your are being ironic with your use of "isn't", but the method mouseListener is called from the EDT. The EDT gets the mouse events and relay them to the listeners. So it is safe. – toto2 Jun 5 '11 at 15:31
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.