Reputation: 1565
I have some huge NetBeans projects with many packages, sub-packages, sub-sub-packages .etc, and it gets very confusing seeing all these package folders in the flat layout that NetBeans shows.. e.g. a.b.c.d.e.f.g , a.b.c.d.d.e.f.h .etc .etc
Is it possible to have a hierarchical directory (tree?) view, like in IntelliJ IDEA?
Thanks, Jose
Upvotes: 51
Views: 25261
Reputation: 340
You can go to the source directory in command line, then use "tree" command to see the hierarchy of this project.
Upvotes: 0
Reputation: 77995
In the Projects window just invoke the context menu by right-clicking on any empty space then click View Java Packages as > Tree.
Upvotes: 112