Java -jar命令could not find the main class怎么解决

2024-12-18 12:28:51
推荐回答(3个)
回答1:

没有找到主函数。在你的jar里必须有且只能有一个方法为主方法,例如:
public class test {

public static void main(String args[]) {// 必须定义主方法,不然程序从哪里开始执行呢
// 这里定义你的主方法
}
}

回答2:

没有找到主函数

回答3:

设置好classpath