我在网上查看了很多信息,也在这里查看了一些问题,但无法解决我的问题,所以我发布了这个问题。我有一个相当简单的项目,使用SWING
它在 Eclipse 下编译和运行,但是当我尝试使用标准Export->Java->Runnable Jar
时,最后保留默认属性时,我有一个文件,当我双击时我得到这个:Could not find the main class: TableFilterDemo. Program will exit
. 这是我的项目结构:
这是我用于创建的配置Runnable Jar
:
并且因为据我了解该错误在定位main
我留下的方法时存在一些问题,TableFilterDremo.java
其中仅包含该main
方法:
public class TableFilterDemo{
public static void main(String[] args) {
//Schedule a job for the event-dispatching thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
CreateGUI.createAndShowGUI();
}
});
}
}
到目前为止还没有成功。