When a file (.java for example) is open in Eclipse, how do I get the Package Explorer to show the file that I am working on?
6 Answers
There is a button in the Package Explorer view that looks like two yellow arrows pointed at left and right. The tooltip is "Link with Editor". Click that.

- 28,879
- 6
- 61
- 61
-
8I've just realised this button is a on/off toggle ("always link the currently open file" vs. "link the open file *now*"), so I might try Ahe's solution below. – bacar Dec 01 '11 at 19:25
I've found that constantly syncing package explorer with editor causes package explorer view eventually to grow too long, especially with large projects. I've instead mapped a keyboard shortcut to sync package explorer with the editor. If you are using mylyn this is of course a smaller problem.
Key mappings are available at Window ⟶ Preferences ⟶ General ⟶ Keys ⟶ Show In (Show In Target Id: Package Explorer). Mine is Ctrl+Alt+⟵, be welcome to copy.
In Luna Command name has changed a little. Instead of Show In (Show In Target Id: Package Explorer)
command is now Show In (Package Explorer)
.
From this site:
How to use Show In functionality from the popup menu
Press Alt+Shift+W while you’re in an editor. This pops up a menu with a number of choices. The choices will vary depending on what plugins you have installed. Select the option you want and press Enter.
The fastest way to select an option is to use the first letter of the option, eg. to go to the Package Explorer, press P (you may have to do this 2 or 3 times depending on how many other options start with P). The press Enter. You could also use the arrow keys.
Invoke "Show In" faster with a keyboard shortcut
If you frequently use one of the options (eg. Package Explorer), you can map a single keyboard shortcut to invoke it.
- Go to Windows > Preferences > General > Keys.
- Search for Show In. Eclipse will list a number of Show In options. In our case we want Show In (Show In Target Id: Package Explorer).
- Select the command you want, enter a key in Binding and you’re done.
Always link active source file with package explorer
If you like this feature, you can open the package editor and click on the double yellow arrows to always show the currently selected source file in the package explorer.

- 4,765
- 8
- 40
- 57

- 27,676
- 31
- 147
- 246
There is a double arrow icon at the top of the Package Explorer that toggles this behaviour. click on It
-
Also documented here, which makes it really clear - https://harjinderkamboj.wordpress.com/2012/09/28/track-active-item-in-solution-explorer-in-eclipse/ It's the Eclipse equivalent of the 'track active' option in Visual Studio. – Chris Halcrow Dec 05 '18 at 22:35
-
In your Eclipse .java file editor, right-click anywhere, then "Show In-> Package Explorer".
As shown:
As you can see, you can also open file in Navigator, Outline and so on with this.

- 90,663
- 31
- 146
- 203

- 73
- 1
- 6
Above project explorer window
you will see the below image in the red circle , just clicked on this one mean when clicked any file in the project will showing you in project explorer.
If you want to show only one file you can
1 - Click right on the file .
2 - Select show-in .
3 - Select show in project explorer .
4 - Done.
The below image explain more about it .

- 4,615
- 3
- 44
- 53