0
我正在嘗試創建一個看起來像紙牌的切換按鈕。無論我放置img文件夾的位置如何,都無法顯示圖像。我使用下面的代碼。用圖標切換按鈕
final JFrame frame = new JFrame("Toggle button test");
frame.setSize(500, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(new FlowLayout());
ImageIcon icon = new ImageIcon("img/1.png");
JToggleButton jtbButton = new JToggleButton(icon);
frame.add(jtbButton);
frame.setVisible(true);