java中jar文件中jmenu中的图像

java中jar文件中jmenu中的图像,java,swing,jar,awt,jmenu,Java,Swing,Jar,Awt,Jmenu,亲爱的Stackoverflow开发人员,我必须将图像作为图标从jar加载到jmenu。 我正在使用以下代码。它抛出空指针异常,但当我在jframe中使用imageicon类设置图标时,它在frame中显示图标 try { JMenu menu= new JMenu(""); Icon im1= new ImageIcon(getClass.getResource("path of the images"); menu.setIcon(im1); }

亲爱的Stackoverflow开发人员,我必须将图像作为图标从jar加载到jmenu。 我正在使用以下代码。它抛出空指针异常,但当我在jframe中使用imageicon类设置图标时,它在frame中显示图标

   try
   {

    JMenu menu= new JMenu("");
    Icon im1= new ImageIcon(getClass.getResource("path of the images");

   menu.setIcon(im1);
  }
  catch(Exception ex)
   {

   }
此代码plz帮助中有什么错误

这个代码有什么问题

  • 空的
    catch(Exception ex)
    块:您应该始终保留异常的跟踪,否则会使调试变得异常困难。为此目的使用记录器或将stacktrace打印到控制台)
  • 如果看不到图标,很可能找不到资源。通常,我更喜欢使用资源的绝对路径(否则它是相对于当前类包的)。您需要确保映像文件已正确嵌入(它必须位于类路径的某个位置,在jar或目录中)
  • 你应该使用一致的缩进
  • 这个代码有什么问题

  • 空的
    catch(Exception ex)
    块:您应该始终保留异常的跟踪,否则会使调试变得异常困难。为此目的使用记录器或将stacktrace打印到控制台)
  • 如果看不到图标,很可能找不到资源。通常,我更喜欢使用资源的绝对路径(否则它是相对于当前类包的)。您需要确保映像文件已正确嵌入(它必须位于类路径的某个位置,在jar或目录中)
  • 你应该使用一致的缩进
    • 常见的问题是,
      图像图标
      图标
      不返回任何异常,测试
      空值

    • Icon im1=新图像图标为什么???
      ,这些是不同的
      Java对象
      ,必须测试
      图标
      是否为
      实例
      图像图标

    • 阅读有关和

    • 比如说

    代码

    • 常见的问题是,
      图像图标
      图标
      不返回任何异常,测试
      空值

    • Icon im1=新图像图标为什么???
      ,这些是不同的
      Java对象
      ,必须测试
      图标
      是否为
      实例
      图像图标

    • 阅读有关和

    • 比如说

    代码


    getClass.getResource(“图像路径”
    的返回结果分配给
    URL
    ,并将该值转储到控制台或在调试器中检查它,以确保该资源正在被定位。您希望它重复多少次:“图像路径”有问题…将
    getClass.getResource(“图像路径”
    的返回结果分配给
    URL
    ,并将值转储到控制台或在调试器中检查它,以确保资源正在被定位。您希望听到它重复的频率是多少:“图像路径”有问题。。。
    import java.awt.BorderLayout;
    import java.awt.ComponentOrientation;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    
    import javax.swing.AbstractAction;
    import javax.swing.Box;
    import javax.swing.Icon;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JSeparator;
    import javax.swing.JTextField;
    import javax.swing.JTextPane;
    import javax.swing.UIManager;
    import javax.swing.border.BevelBorder;
    
    public class MenuExample extends JPanel {
    
        private static final long serialVersionUID = 1L;
        private JTextPane pane;
        private JMenuBar menuBar;
    
        public MenuExample() {
            menuBar = new JMenuBar();
            JMenu formatMenu = new JMenu("Justify");
            formatMenu.setMnemonic('J');
            formatMenu.setIcon(UIManager.getIcon("OptionPane.errorIcon"));
            MenuAction leftJustifyAction = new MenuAction("Left", UIManager.getIcon("OptionPane.errorIcon"));
            MenuAction rightJustifyAction = new MenuAction("Right", UIManager.getIcon("OptionPane.informationIcon"));
            MenuAction centerJustifyAction = new MenuAction("Center", UIManager.getIcon("OptionPane.warningIcon"));
            MenuAction fullJustifyAction = new MenuAction("Full", UIManager.getIcon("OptionPane.questionIcon"));
            JMenuItem item;
            item = formatMenu.add(leftJustifyAction);
            item.setMnemonic('L');
            item = formatMenu.add(rightJustifyAction);
            item.setMnemonic('R');
            item = formatMenu.add(centerJustifyAction);
            item.setMnemonic('C');
            item = formatMenu.add(fullJustifyAction);
            item.setMnemonic('F');
            menuBar.add(formatMenu);
            menuBar.add(createMenu("Menu 1"));
            menuBar.add(createMenu("Menu 2"));
            menuBar.add(createMenu("Menu 3"));
            menuBar.add(Box.createHorizontalGlue());
            menuBar.add(new JSeparator());
            menuBar.add(new JButton("   Seach ....  "));
            menuBar.add(new JLabel());
            menuBar.add(new JTextField("   Seach ....  "));
            menuBar.add(new JComboBox(new Object[]{"height", "length", "volume"}));
            menuBar.add(createMenu("About"));
            menuBar.setBorder(new BevelBorder(BevelBorder.RAISED));
    
        }
    
        private JMenu createMenu(String title) {
            JMenu m = new JMenu(title);
            m.add("Menu item #1 in " + title);
            m.add("Menu item #2 in " + title);
            m.add("Menu item #3 in " + title);
            if (title.equals("About")) {
                m.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
            }
            return m;
        }
    
        class MenuAction extends AbstractAction {
    
            public MenuAction(String text, Icon icon) {
                super(text, icon);
            }
    
            public void actionPerformed(ActionEvent e) {
                try {
                    pane.getStyledDocument().insertString(0,
                            "Action [" + e.getActionCommand() + "] performed!\n",
                            null);
                } catch (Exception ex) {
                    ex.printStackTrace();
                }
            }
        }
    
        public static void main(String s[]) {
            MenuExample example = new MenuExample();
            example.pane = new JTextPane();
            example.pane.setPreferredSize(new Dimension(250, 250));
            example.pane.setBorder(new BevelBorder(BevelBorder.LOWERED));
            JFrame frame = new JFrame("Menu Example");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setJMenuBar(example.menuBar);
            frame.getContentPane().add(example.pane, BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
        }
    }