2

在 Eclipse 中,当我运行代码时,这是有效的:

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;


   public class Main {

    public static void main(String[] args) {

        JFrame frame = new JFrame("test viewing images");

        frame.setSize(600,300);     
        frame.setLocationRelativeTo(null); // centered on monitor   
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);


        /**
         * Menu Bar stuff
         */

        JMenuBar menuBar;
        JMenu menu;
        JMenuItem menuItem;

        // MENU BAR 
        menuBar = new JMenuBar();
        frame.setJMenuBar(menuBar);
        menuBar.setVisible(true);

        // MENU 1
        menu = new JMenu("File");
        menuBar.add(menu);

            // MENU 1 ITEM
            ImageIcon icon = new ImageIcon("src/Action-exit-icon.png");     
            menuItem = new JMenuItem("Exit Program", icon);
            menu.add(menuItem);


        frame.setVisible(true);

    }

   }

这是我的包资源管理器中的文件结构:

ShowImage (project)
 > src / Main.java
 > src / Action-exit-icon.png

此外,此工作区位于 Z:\eclipse_projects

我可以看到ImageIcon icon = new ImageIcon("src/Action-exit-icon.png"); 运行良好,menuBar 可以正常工作。

现在让我们导出这个项目,我会将 JAR 通过电子邮件发送给我的朋友。

  1. 右键单击项目 > 选择导出
  2. 选择 Java > 可运行的 JAR 文件
  3. 我在启动配置中选择主文件
  4. 导出目的地:我的桌面
  5. 库处理:将所需库提取到生成的 JAR 中
  6. 转到我的桌面,双击 ShowImage.jar

JFrame 出现了,但Action-exit-icon.png根本没有出现。

当我打开 ShowImage.jar 来查看它的内容时,我看到了 Main.class、Action-exit-icon.png、META-INF。

好的,我现在对如何引用图像或任何资源感到非常困惑。我究竟做错了什么?

4

1 回答 1

7
new ImageIcon("src/Action-exit-icon.png"); 

an的String构造函数ImageIcon假定字符串表示File路径。

这个图像显然是一个应用程序资源,并且在部署时(在一个 Jar 中)将成为一个嵌入式资源。因此,必须URL从应用程序的运行时类路径访问它,如下所示:

new ImageIcon(getClass().getResource("/src/Action-exit-icon.png")); 

大修代码,我得到了这个:

import java.awt.Color;
import javax.swing.*;

public class JavaGui148 {

    public JComponent getGUI() {
        JPanel p = new JPanel();

        p.setBackground(Color.GREEN);

        return p;
    }

    public JMenuBar getMenuBar() {
        /**
         * Menu Bar stuff
         */
        JMenuBar menuBar;
        JMenu menu;
        JMenuItem menuItem;

        // MENU BAR 
        menuBar = new JMenuBar();
        menuBar.setVisible(true);

        // MENU 1
        menu = new JMenu("File");
        menuBar.add(menu);

        // MENU 1 ITEM
        ImageIcon icon = new ImageIcon(getClass().getResource(
                "/src/Action-exit-icon.png"));
        menuItem = new JMenuItem("Exit Program", icon);
        menu.add(menuItem);

        return menuBar;
    }

    public static void main(String[] args) {
        Runnable r = new Runnable() {

            @Override
            public void run() {
                JavaGui148 gui = new JavaGui148();

                JFrame f = new JFrame("Demo");
                f.setJMenuBar(gui.getMenuBar());
                f.add(gui.getGUI());
                // Ensures JVM closes after frame(s) closed and
                // all non-daemon threads are finished
                f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                // See http://stackoverflow.com/a/7143398/418556 for demo.
                f.setLocationByPlatform(true);

                // ensures the frame is the minimum size it needs to be
                // in order display the components within it
                f.pack();
                // should be done last, to avoid flickering, moving,
                // resizing artifacts.
                f.setVisible(true);
            }
        };
        // Swing GUIs should be created and updated on the EDT
        // http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html
        SwingUtilities.invokeLater(r);
    }
}
于 2012-12-19T00:50:38.573 回答