我试图导出一个可运行的 Jar,但它没有执行。问题是could not find main method for given launch configuration
但是我确实在启动配置中指定了 Main 类。Main
为此,我什至将包含主要方法的类重命名为
我已经指定了包含 main 方法的 Main 类,但是 jar 文件仍然没有运行?
我的Main
课
public class Main {
static Preferences userPreferences = Preferences.userRoot();
final static String LOGIN_KEY = "login_key";
.....................
public static void main(String [] args) {
Runnable r = new Runnable() {
public void run() {
try {
createGUI();
} catch (IOException e) {
e.printStackTrace();
}
}
} ;
javax.swing.SwingUtilities.invokeLater(r);
}
public static void createGUI() throws IOException {
JFrame j = new JFrame("C Manager");
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ActionListener al = new ActionListener() {
@SuppressWarnings("deprecation")
public void actionPerformed (ActionEvent e ) {
......................
}
}