我有一个使用以下代码创建的 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 ) ;
但是我的按钮看起来像这样
我想将文本移动到按钮的底部。任何建议高度赞赏。