I have no idea why you do not see the text and the icon. By default, the text should be applied to the right of the icon.
To display text on top of the icon you are using:
JButton button = new JButton(...);
button.setHorizontalTextPosition(JButton.CENTER);
button.setVerticalTextPosition(JButton.CENTER);
source
share