Mega Code Archive

 
Categories / Java / Swing JFC
 

Lines are left justified This label text will center the lines

import javax.swing.JButton; public class Main {   public static void main(String[] argv) throws Exception {     JButton button = new JButton();     button.setText("<html><center>" + "This is a" + "<br>" + "swing button"         + "</center></html>");   } }