Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Mix Icon and text in JLabel

import java.awt.FlowLayout; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.SwingConstants; public class MixingIconLabel {   public static void main(String[] args) {     JFrame.setDefaultLookAndFeelDecorated(true);     JFrame frame = new JFrame();     frame.setTitle("JLabel Test");     frame.setLayout(new FlowLayout());     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     ImageIcon imageIcon = new ImageIcon("yourFile.gif");     JLabel label = new JLabel("Mixed", imageIcon, SwingConstants.RIGHT);     frame.add(label);     frame.pack();     frame.setVisible(true);   } }