0

我试图在 Runnable Jar 中显示一些图像,当我在 eclipse 中运行它时它工作正常,但是当我导出它时,它只是不加载,文件在 jar 中但它只是不会运行,我一直在尝试破解至于为什么,我原本以为是图像,但我将它从项目中完全删除,它仍然无法运行,我认为它与资源加载有关,但老实说我不知道​​,这是我的代码。

public class Main {

    public static void main(String[] args) throws ClassNotFoundException,
            InstantiationException, IllegalAccessException {

        try {
            UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
        } catch (UnsupportedLookAndFeelException ex) {
        }

        final JFrame frame = new JFrame("Window");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        frame.pack();
        final JFrame frame1 = new JFrame("Window2");
        frame.setLocation(600, 300);
        frame.setSize(140, 125);
        Dimension minSize = new Dimension(800, 600);
        Dimension maxSize = new Dimension(800, 600);
        frame.setMinimumSize(minSize);
        frame.setMinimumSize(maxSize);
        frame.setResizable(false);
        frame.setSize(784, 561);
        frame.getContentPane().setLayout(null);

        JLabel label = new JLabel("");
        label.setIcon(new ImageIcon(Main.class
                .getResource("/res/BlueSpace.jpg")));
        label.setBounds(0, 0, 794, 493);
        frame.getContentPane().add(label);

        JButton btnNewButton = new JButton("Install Modpack");
        btnNewButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                System.out
                        .println("Developer - The Modpack has began Installation!");

                frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

                frame1.pack();
                frame1.setLocation(600, 300);
                frame1.setSize(140, 125);
                Dimension minSize = new Dimension(800, 600);
                Dimension maxSize = new Dimension(800, 600);
                frame1.setMinimumSize(minSize);
                frame1.setMinimumSize(maxSize);
                frame1.setResizable(false);
                frame1.setSize(784, 561);
                frame1.getContentPane().setLayout(null);

                JLabel label = new JLabel("");
                label.setIcon(new ImageIcon(Main.class
                        .getResource("/res/BlueSpace.jpg")));
                label.setBounds(0, 0, 794, 493);
                frame1.getContentPane().add(label);

                JProgressBar progressBar = new JProgressBar();
                progressBar.setBounds(10, 504, 774, 14);
                frame1.getContentPane().add(progressBar);
                progressBar.setValue(25);

                JLabel lblInstallingModpack = new JLabel(
                        "Installing Modpack...");
                lblInstallingModpack.setToolTipText("Modpack Is Installing!");
                lblInstallingModpack
                        .setHorizontalAlignment(SwingConstants.CENTER);
                lblInstallingModpack.setBounds(300, 529, 150, 14);
                frame1.getContentPane().add(lblInstallingModpack);
                frame1.setVisible(true);
                JOptionPane.showMessageDialog(frame1,
                        "I'm 25% done on the Modpack!", "Not Done Yet...",
                        JOptionPane.WARNING_MESSAGE);

                frame.setVisible(false);
            }
        });
        btnNewButton.setEnabled(false);
        btnNewButton.setBounds(531, 504, 253, 56);
        frame.getContentPane().add(btnNewButton);
        frame.setVisible(true);
        btnNewButton.setEnabled(true);

        JLabel lblWelcomeToThe = new JLabel("Welcome to the Realism Modpack");
        lblWelcomeToThe.setBounds(10, 504, 511, 14);
        frame.getContentPane().add(lblWelcomeToThe);

        JLabel lblNewLabel = new JLabel(
                "All Mods owned by there respecive owners");
        lblNewLabel.setBounds(10, 546, 511, 14);
        frame.getContentPane().add(lblNewLabel);

        JButton btnFinish = new JButton("Creators");
        btnFinish.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                JOptionPane.showMessageDialog(frame,
                        "Ribenja - ModPack Author", "A List of Great People",
                        JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame, "Dave - The 'Enthusiast'",
                        "A List of Great People", JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame, "Carl - Ate his hands",
                        "A List of Great People", JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame,
                        "Surf dude - This message was simple",
                        "A List of Great People", JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame,
                        "ThatGuy2000 - A true Hero", "A List of Great People",
                        JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame, "*** - An NSA operative",
                        "A List of Great People", JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame,
                        "Steve - A true Minecrafter", "A List of Great People",
                        JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame, "Downloader - you",
                        "A List of Great People", JOptionPane.OK_OPTION);
                JOptionPane.showMessageDialog(frame,
                        "I KNOW WHAT YOU DID - A true story teller",
                        "A List of Great People", JOptionPane.OK_OPTION);

            }

        });
        btnFinish.setEnabled(true);
        btnFinish.setBounds(268, 504, 253, 56);
        frame.getContentPane().add(btnFinish);
    }
}
4

3 回答 3

1

我怀疑您的 JAR 文件没有打包资源文件,在您的情况下 - 图像文件。确保您的 JAR 有一个“res”目录,其中包含框架所需的所有图像。

于 2013-10-28T11:02:18.757 回答
0

谢谢大家,解决了问题是java安装损坏。

于 2013-10-28T23:55:44.707 回答
0

用合成变体替换这两个图像后,应用程序。出现在屏幕上。

其他提示

  1. 不要设置顶级容器的大小。而是布局内容并调用pack()
  2. Java GUI 可能必须在多个平台、不同的屏幕分辨率和使用不同的 PLAF 上工作。因此,它们不利于组件的精确放置。要为强大的 GUI 组织组件,请改用布局管理器或它们的组合1,以及空白区域的布局填充和边框2
于 2013-10-28T13:30:42.883 回答