Eclipse: 快速搜索文件名

在 Eclipse 中工作时,我常常意识到我记得类名,但是忘记了这个类在哪个包中。使用搜索不是很方便。太多的点击和按键。我想知道,是否有一个插件来简化这个过程?例如,如果在包浏览器的顶部有一个文本编辑框,可以过滤显示包和。Java 文件取决于输入的文本。有人知道吗?

63697 次浏览

Eclipse does provide similar functions:

Open Resource Shift+Ctrl+R for all resource files (including Java files)

Open Type Shift+Ctrl+T for all Java classes in classpath.

They also filter the list as you type.

Note that they search all files of all opened projects in current workspace.