bit-question
bit-question

Reputation: 3843

Cannot find "Package Explorer" view in Eclipse

I opened a project in Eclipse, but found that I cannot switch to the package explorer by clicking Window->Show View. In the menu shown under Show View, I just could not find the item "Package Explorer". What could be the problem?

Upvotes: 60

Views: 210457

Answers (6)

Partha Paul
Partha Paul

Reputation: 309

Try this

Window > Show View > Package Explorer

it will display the hidden 'Package Explorer' on your eclipse IDE.

• 'Window' is in your Eclipse' menubar.

Upvotes: 1

AGéoCoder
AGéoCoder

Reputation: 922

You might be in debug mode. If this is the problem, you can simply click on the "Java" button (next to the "Debug" button) in the upper-right hand corner, or click on "Open Perspective" and then select "Java (default)" from the "Open Perspective" window.

Upvotes: 0

Zar E Ahmer
Zar E Ahmer

Reputation: 34360

The simplest, and best long-term solution

Go to the main menu on top of Eclipse and locate Window next to Run and expand it.

 Window->Reset Perspective... to restore all views to their defaults

It will reset the default setting.

Upvotes: 8

user2342262
user2342262

Reputation: 149

For Eclipse version 4.3.0.v20130605-2000. You can use the Java (default) perspective. In this perspective, it provides the Package Explorer view.

To use the Java (default) perspective: Window -> Open Perspective -> Other... -> Java (default) -> Ok

If you already use the Java (default) perspective but accidentally close the Package Explorer view, you can open it by; Window -> Show View -> Package Explorer (Alt+Shift+Q,P)

If the Package Explorer still doesn't appear in the Java (default) perspective, I suggest you to right-click on the Java (default) perspective button that is located in the top-right of the Eclipse IDE and then select Reset. The Java (default) perspective will show the Package Explorer view, Code pane, Outline view, Problems, JavaDoc and Declaration View.

Upvotes: 4

Arne Deutsch
Arne Deutsch

Reputation: 14769

Not all view are listed directly in every perspective ... choose:

Window->Show View->Other...->Java->Package Explorer

Upvotes: 120

anon
anon

Reputation: 1061

Try Window > Open Perspective > Java Browsing or some other Java perspectives

Upvotes: 7

Related Questions