无法解决java.awt和javax.swing导入错误

时间:2018-12-26 15:36:32

标签: java eclipse windowbuilder

在Eclipse中尝试使用windowbuilder,但生成的代码显示导入java.awt和javax.swing时出错

我的目标是创建一个简单的mp3播放器。希望使用GUI的窗口生成器,但收到这些错误。已经尝试过使用最新的jre,因为我是java的新手,所以我也无法理解其他有关此错误的问题的答案。 这是代码。我没有从生成的代码中进行任何更改。

package display;

import java.awt.EventQueue;
import javax.swing.JFrame;

public class playerGui {
    private JFrame frame;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    playerGui window = new playerGui();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public playerGui() {
        initialize();
    }

    /**
     * Initialize the contents of the frame.
     */
    private void initialize() {
        frame = new JFrame();
        frame.setBounds(100, 100, 450, 300);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

}

screenshot of the java build path of the project

0 个答案:

没有答案