我使用下一个代码在按钮上设置图标
private JButton loadTxtButton = new JButton("Load .txt");
private JButton resetButton = new JButton("Reset");
private JButton solveButton = new JButton("Solve");
private SudokuSolverMain() {
...
loadTxtButton.setIcon(new ImageIcon("src/com/tum4ik/icons/upload.png"));
resetButton.setIcon(new ImageIcon("src/com/tum4ik/icons/reset.png"));
solveButton.setIcon(new ImageIcon("src/com/tum4ik/icons/solve.png"));
}
当我从Intellij Idea运行应用程序时,一切看起来都不错。 enter image description here
但是当我通过Build - >将应用程序编译成可执行jar文件时构建工件......不显示图标。
有人可以帮我解决这个问题。
文件夹结构: enter image description here