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.
在 Eclipse 中,当您执行Run As->时Java Application,它会显示整个类路径中每个类的列表,其中包含一个public static void main函数。如果我在类路径上有一个 JAR 文件,我可以从该 JAR 文件中的某个类中运行一个 main。
Run As
Java Application
public static void main
我可以在 Netbeans 中做同样的事情吗?在 Netbeans 中,当我右键单击一个项目并选择Run时,它似乎只显示该项目中的类,而不是所有依赖项。
Run
尝试这个:
在项目属性中添加您的主类(如下所示),然后运行您的项目