center text jlabel code example
Example 1: jlabel text center
JLabel label = new JLabel("The Label", SwingConstants.CENTER);
Example 2: how to set jlabel in center
jLabelvariable.setLocation((this.getWidth()-jLabelvariable.getWidth())/2,50);
JLabel label = new JLabel("The Label", SwingConstants.CENTER);
jLabelvariable.setLocation((this.getWidth()-jLabelvariable.getWidth())/2,50);