标签: java image swing embedded-resource openoffice.org
我在Open Office插件的界面中使用JButton。我想在按钮而不是文本上显示图像。当我关注时,按钮本身就会消失!
JButton
btnPath = new javax.swing.JButton("Select File.."); ImageIcon img = new ImageIcon("C:\\Path\\toFile\\add.png"); btnPath.setIcon(img);
我在哪里做错了?