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 应用程序并使用 Netbeans 制作了一个 jar 文件,它在我的 Windows 7 电脑上运行良好,但在 Win XP 上却无法运行。它返回“找不到主类”错误。我该如何解决这个问题?
使用运行你的主类java -classpath . your_main_class_name,或者在 Windows XP 中使用 NetBeans 重新构建和运行您的应用程序,jar 文件中的清单文件可能具有适用于 Windows XP 的有效类路径
java -classpath . your_main_class_name