トランプのようなトグル ボタンを作成しようとしています。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);