import javax.swing.JFrame;
import javax.swing.JLabel;
public class ImagenesLabel extends JFrame{
JLabel label = new JLabel();
public ImagenesLabel(){
this.setVisible(true);
this.setBounds(0, 0, 600, 600);
label.setText("<html><img src=\"http://nicolaspagano.com.ar/wp-content/uploads/2010/08/android-300x187.jpg\"></html>");
this.add(label);
}
}
No hay comentarios:
Publicar un comentario