JFrame j = new JFrame();
JButton b = new JButton();
b.setIcon(new ImageIcon("f://1.jpg"));
j.add(b);
j.setSize(300, 200);
j.setVisible(true);
我这样写是没问题的,你试试
ImageIcon icon = new ImageIcon(FrameConfig.WELCOME_BUTTON);
或者 Image icon=new ImageIcon("Image/login.gif").getImage();
JButton enter = new JButton(icon);
Jbutton b1=new Button(new ImageIcon("img/2.png"));