Reputation: 4213
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
Reputation: 68476
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
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