Netbeans 7.3中缺少输出



我测试了以下类:

public class PrintLine {
    public static void main(String[] args) {
        System.out.println("print line!");
    }
}

Netbeans说:

run:
BUILD SUCCESSFUL (total time: 0 seconds)

In Eclipse I read >> print line! <<

我能做什么?

Netbeans可能被设置为为Output打开一个不同的窗口。您正在查看的是编译器输出。也许你只是说build或者clean and build。您需要按下带有小播放符号的按钮,表示运行,或者您可以使用键:F6

如果输出窗口没有自动打开,请转到菜单窗口 -> 输出 -> 输出(或使用ctrl + 4)

相关内容

  • 没有找到相关文章