0

我有一个简单的表格,用 if 语句显示几张图片。我在项目目录中有一个名为“天气”的文件夹,其中包含我使用的所有图片。当我从 NetBeans 运行项目时,一切都很好。但是,当我执行“清理和构建项目”然后运行导出的 jar 文件时,不会显示图片。我无法弄清楚为什么会这样。我已经添加了我在需要时使用的代码。

public void loadWeather() {
    Weather w = new Weather();
    lblWeatherCity.setText(w.getCity());
    lblWeatherTemp.setText(w.getTemp());
    lblWeatherCondition.setText(w.getStatus());

    String weatherCondition =(String) w.getStatus();
    String cloudy = "Cloudy";
    //System.out.println(weatherCondition);



    if(weatherCondition.contains(cloudy)){
        ImageIcon test = new ImageIcon("Weather/Cloudy.jpg"); 
        lblWeatherContitionIcon.setIcon(test);
        lblWeatherContitionIcon.setText(null);

    }else{
        ImageIcon test = new ImageIcon("Weather/academia_logo.jpg"); 
        lblWeatherContitionIcon.setIcon(test);
        lblWeatherContitionIcon.setText(null);

    }     

}
4

1 回答 1

0

您是否已将此目录作为资源添加到您的项目中?当您从 Netbeans 内部启动项目时,它可能会工作,因为找到了该目录(因为它相对于应用程序“启动目录”而存在)。如果您构建一个发行版,Netbeans 需要了解额外的项目资源(图像、图标、本地化文件等)——这些资源将被添加到 jar 中。

在这里,您可以在 Netbeans 知识库中找到一篇关于如何使用图像/资源的文章。

于 2016-01-07T19:28:17.590 回答