次のコードを使用して作成された JButton があります。
JButton button = new JButton ( "Document",appletRec.getIcon()) ;
button.addActionListener ( this ) ;
button.setOpaque ( true ) ; //changed false from true.
button.setFocusPainted ( true ) ; //changed false from true.
button.actAsLink ( true ) ;
button.setHighlightForeground ( Color.blue ) ;
button.setVerticalTextPosition ( SwingConstants.BOTTOM ) ;
button.setVerticalAlignment ( SwingConstants.TOP ) ;
button.setHorizontalTextPosition ( SwingConstants.CENTER ) ;
しかし、私のボタンはこのように表示されています
テキストをボタンの下に移動したい。どんな提案でも大歓迎です。