如何在IntelliJ中使用JavaSwing中的FormLayout(JGoodies)



当我在"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();
}
}
}

这是错误消息在这里输入图像描述在这里

搜索两天后终于确定了,这表明我必须下载jgoodies-common-x.x.x.jar和jgoodie-forms-.x.x.x.jar并将其添加到库

相关内容

  • 没有找到相关文章

最新更新