How do I create JLabel with an image icon?
Date: 2010-09-16. Category: Java Swing examples. Hits: 14K time(s).
To create a JLabel with an image icon we can either pass an ImageIcon as a second parameter to the JLabel constructor or use the JLabel.setIcon() method to set the icon.
package org.kodejava.example.swing;
import javax.swing.*;
import java.awt.*;
public class JLabelWithIcon extends JFrame {
public JLabelWithIcon() throws HeadlessException {
initialize();
}
private void initialize() {
setSize(300, 300);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(new FlowLayout(FlowLayout.LEFT));
Icon icon = new ImageIcon("ledgreen.png");
JLabel label1 = new JLabel("Full Name :", icon, JLabel.LEFT);
JLabel label2 = new JLabel("Address :", JLabel.LEFT);
label2.setIcon(new ImageIcon("ledyellow.png"));
getContentPane().add(label1);
getContentPane().add(label2);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new JLabelWithIcon().setVisible(true);
}
});
}
}