导出Java项目时我的图形不会显示

时间:2019-04-01 14:56:35

标签: java eclipse image export

我正在处理Java项目,它包含图像。但是,当我将Java项目导出为可运行的Jar文件或只是Jar文件时,屏幕上都没有图像。使用(Eclipse)在IDE中可以正常工作。

我已经尝试了人们发布的许多方法。我也将res文件夹也设置为主文件夹。

    newFrame.setTitle("Mustache Clicker");
     jLabel1.setText(i + "");
     URL mustache1 = mainscreen.class.getResource("/images/mustache.png");
     ImageIcon mustache = new ImageIcon(mustache1);
     URL mustache2 = mainscreen.class.getResource("/images/Mustache Mine.png");
     ImageIcon miner = new ImageIcon(mustache2);
     URL mustache3 = mainscreen.class.getResource("/images/Auto .png");
     ImageIcon auto = new ImageIcon(mustache3);
     URL mustache4 = mainscreen.class.getResource("/images/mustache (1).png");
     ImageIcon rain = new ImageIcon(mustache4);
     URL mustache5 = mainscreen.class.getResource("/images/city.png");
     ImageIcon city = new ImageIcon(mustache5);
     jButton2.setIcon(miner);
     jButton1.setIcon(mustache);
     jButton3.setIcon(auto);
     jButton4.setIcon(rain);
     jButton5.setIcon(city);

1 个答案:

答案 0 :(得分:0)

尝试执行“ images / Auto.png”。我猜是因为它是文件路径问题。 甚至可能是“ ../ images / Auto.png”