Eclipse Juno 中没有控制台输出

2022-01-11 00:00:00 console java eclipse eclipse-juno

非常直接.我已经在 Eclipse Juno 中工作了一段时间,并且我的控制台一直在工作.当您使用

Pretty straight forward. I've been working in Eclipse Juno for a while now and my console always worked. When you output to the console with

System.out.println("某事");

System.out.println("Something");

在 java 中,或者只是在您编译和构建项目时,控制台中总会有 some 输出.但是今天,我启动了IDE,什么也没有.没有控制台输出.我已经重新启动了 Eclipse,重置了透视图..什么都没有发生.

In java, or just when you compile and build your project there's always some output in the console. But today, I started up the IDE, and nothing. No console output. I've restarted Eclipse, reset the perspective.. Nothing is happening.

顺便说一句,使用 Java EE 版本.任何帮助,将不胜感激.谢谢!

Using the Java EE version just btw. Any help would be appreciated. Thanks!

已解决:所以在挣扎了多久之后,我关闭了我的服务器.杀死日蚀.并重新启动一切,控制台现在再次工作.一开始不知道这是怎么发生的.

SOLVED: So after struggling for how long, I shut down my server. Killed eclipse. And restarted everything and the console is now working again. No idea how this happened in the first place.

推荐答案

控制台右侧有一个小的下拉图标,可让您选择要查看的控制台.也许您不小心选择了不同的控制台.

There is a small pull-down icon on the right of the console that lets you select which console you want to see. Maybe you accidentally selected a different console.

相关文章