Set Icon for JLabel Example /*         Set Icon for JLabel Example         This java example shows how to ...

Set Icon for JLabel Example

03:11 PASSOVE INCOME 0 Comments

              Set Icon for JLabel Example

  1. /*
  2.         Set Icon for JLabel Example
  3.         This java example shows how to set image icon for JLabel using
  4.         setIcon method of Java Swing JLabel class.
  5. */
  6. import javax.swing.ImageIcon;
  7. import javax.swing.JApplet;
  8. import javax.swing.JLabel;
  9. /*
  10. <applet code="SetJLabelIconExample" width=200 height=200>
  11. </applet>
  12. */
  13. public class SetJLabelIconExample extends JApplet{
  14.        
  15.         public void init(){
  16.                
  17.                 /*
  18.                  * To create JLabel use
  19.                  * JLabel (String caption) constructor
  20.                  * of JLabel class.
  21.                  */
  22.                
  23.                 JLabel label1 = new JLabel("JLabel Set Icon Example.");
  24.                        
  25.                 //add label to applet
  26.                 add(label1);
  27.                 /*
  28.                  * To set image icon for JLabel use,
  29.                  * void setLabel(Icon icon)
  30.                  * method of JLabel class.
  31.                  */
  32.                
  33.                 label1.setIcon(new ImageIcon("images/copy.gif"));
  34.         }
  35. }

0 comments: