Java Jframe不能在导出时打开

问题描述 投票:0回答:3

[我试图在可运行的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);
    }
}
java eclipse swing jframe embedded-resource
3个回答
1
投票

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


0
投票

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

其他提示

  1. 不要设置顶级容器的大小。而是布置内容并调用pack()
  2. Java GUI可能必须在许多平台上,不同的屏幕分辨率和使用不同的PLAF。因此,它们不利于组件的精确放置。要为健壮的GUI组织组件,请改用布局管理器或combinations of them 1,以及white space 2的布局填充和边框。

0
投票

谢谢大家,解决了这个问题,因为Java安装已损坏。

© www.soinside.com 2019 - 2024. All rights reserved.