62,621
社区成员
发帖
与我相关
我的任务
分享
JButton jbt=getJButton("xxxx.png","aa");
private JButton getJButton(String img, String text) {
ImageIcon ico = new ImageIcon(img); // 图片
JButton button = new JButton(text, ico);
button.setIconTextGap(2);
button.setHorizontalTextPosition(JButton.CENTER);
button.setVerticalTextPosition(JButton.BOTTOM);
return button;
}
虽然时间比较久了.不过看到还是回复下.这是图片在上面文字在下面的