首页  >  文章  >  Java  >  为什么图像不显示在我的 Eclipse 导出的可运行 JAR 中?

为什么图像不显示在我的 Eclipse 导出的可运行 JAR 中?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-11-24 08:26:11748浏览

Why are Images Not Displaying in My Eclipse Exported Runnable JAR?

Eclipse 导出的可运行 JAR 不显示图像

尝试从 Eclipse 导出的 JAR 文件加载图像时,用户可能会遇到以下问题:图像无法显示。

要解决此问题,请确保以下:

1。图片资源位置:

  • 确认图片正确打包在资源类包中。
  • 或者,尝试创建一个“图像源文件夹”并将图像放置在那里。
  • 2.图像加载方法:

    验证使用的图像加载方法。以下方法已成功测试:

    label.setIcon(new ImageIcon(MainFrame.class.getResource("/resources/header.jpg")));
    URL url = getClass().getResource("/resources/header.jpg");
    Image image = Toolkit.getDefaultToolkit().getImage(url);
    label.setIcon(new ImageIcon(image));
    try
    {
        label.setIcon(new  ImageIcon(ImageIO.read(getClass().getResource("/resources/header.jpg"))));
    }
    catch (IOException e1)
    {
        e1.printStackTrace();
    }

    3.构建路径配置:

    如果资源不直接位于源文件夹中,请确保它们包含在构建路径中:

  • 右键单击项目并选择“构建路径”> “配置构建路径”。
  • 在“源”选项卡中,单击“添加文件夹”并导航到资源文件夹。
  • 这会将资源文件夹的内容添加到构建路径。
  • 4.运行配置:

    导出为可运行 JAR 时,选择适当的运行配置。此配置应与您在 Eclipse 中运行的主类匹配。

    5.清单文件:

    确保清单文件包含以下属性:

    Rsrc-Class-Path: ./
    Class-Path: .
    Rsrc-Main-Class: <main class>
    Main-Class: org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader

    示例:

    以下示例显示如何成功从资源加载名为“stackoverflow.png”的图像文件夹:

    文件结构:

    - src
      - com.stackoverflow.test
        - Main.java
        - resources
          - stackoverflow.png

    代码:

    package com.stackoverflow.test;
    
    import javax.swing.*;
    
    public class Main {
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable(){
                public void run() {
                    URL url = Main.class.getResource("/resources/stackoverflow.png");
                    ImageIcon icon = new ImageIcon(url);
                    JFrame frame = new JFrame();
                    frame.add(new JLabel(icon));
                    frame.pack();
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    }

    导出:

    右键单击项目并选择“导出” > “可运行的 JAR 文件”。设置适当的启动配置并导出 JAR。

    结果:

    运行导出的 JAR 应成功显示“stackoverflow.png”图像。

    以上是为什么图像不显示在我的 Eclipse 导出的可运行 JAR 中?的详细内容。更多信息请关注PHP中文网其他相关文章!

    声明:
    本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn