Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
java -jar xxx.jar(使用 maven 编译)在 Mac osx 和 Windows 上运行良好,但我收到以下错误:“错误:无法找到或加载主类”在树莓派上。建议或帮助将不胜感激。
这意味着xxx.jar不包含以主类(包含主方法)开头的清单文件。在这种情况下,您必须在命令行中提及如下
xxx.jar
java -cp xxx.jar com.mypack.mymainclass
你的主要方法在哪里com.mypack.mymainclass
com.mypack.mymainclass