当我在“ IntelliJ”中使用Swing Java时,它运行起来没有任何问题,但是当我使用JGoodies时,我真的很失望……FormLayout
 它不与我一起运行并显示以下错误:

Exception in thread "main" java.lang.NoClassDefFoundError: com/jgoodies/forms/layout/FormLayout


这是代码:

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

public class Adddata extends JFrame {
    private JPanel mainpanlll;

    public Adddata(String title )   {
        super(title);
         try {
            this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            this.setContentPane(mainpanlll);;
            this.pack();

        } catch (Exception e )
        {
            e.getMessage();
        }
    }

    public static void main(String[] args) {
        try {
            JFrame frame = new Adddata("HI");
            frame.setVisible(true);
        } catch (Exception e )
        {
            e.getMessage();
        }
    }

}



这是这里的错误信息enter image description here

最佳答案

确定,经过2天的搜索,最终结果表明我必须下载
jgoodies-common-x.x.x.jar和jgoodies-forms-x.x.x.jar
并将其添加到库中

07-26 09:28