Sterling
Sterling

Reputation: 4213

No output in Eclipse?

When trying to run my java project in Eclipse, I can't see the output tab at the bottom. All I can see is Problems, JavaDoc, and Declaration. Shouldn't there be one for Output? And if so, how do I get it?

Upvotes: 5

Views: 18194

Answers (3)

Sometimes the Console Window may be hiding or docked behind the Package Explorer window (preferrably) or other windows. Minimize Package Explorer or all other windows and you will find the console window.

Upvotes: 1

Hanon
Hanon

Reputation: 3927

Java standard output will show in the console in eclipse. If you cannot find the view, you can show the view by the following steps:

Open Window > Show View > Console

Upvotes: 12

Ahamed Mustafa M
Ahamed Mustafa M

Reputation: 3139

Or else you can use the shortcut Alt+Shift+Q and then C

Upvotes: 1

Related Questions