Eclipse是否有像Xcode的“在项目中查找”功能那样的方法来搜索整个项目中的某些文本?


当前回答

Ctrl + H。

同时,

快速打开任何文件,而无需在包中浏览 资源管理器:Ctrl + Shift + R。 打开一个类型(例如:一个类,一个接口)而不单击 无穷无尽的包列表:Ctrl + Shift + T。 直接找到一个大型类文件的成员(方法,变量), 尤其是当很多方法的命名都类似时:Ctrl + O 进入源文件的行号N:按Ctrl + L,输入行号。

其他回答

Ctrl+H在这里非常方便。我主要在当前项目中搜索,而不是在整个工作空间中搜索。要查找当前缓冲区中字符串在整个项目中的所有出现情况,只需选择该字符串,按Ctrl+H并按enter。就这么简单!

Use Resource Filters! Eclipse will restrict the search result using the Resource Filters defined for your project (eg. right click on you project name and select Properties -> Resource -> Resource Filters). So if you keep getting search hits from parts of your project that your not interested in you could make Eclipse skip those by adding a Resource Filter for them. This is especially useful if you have build files or logs or other temporary files that are part of your projects directory structure, but you only want to search amongst the source code. You should also be aware of that files/directories matched for exclusion in the Resource Filters will not show up in the Package Explorer either, so you might not always want this.

没有办法通过我所知道的快捷方式(它是一个PITA)在整个工作空间/项目中进行纯文本搜索,但这将在工作空间中找到引用:

把光标放在你要查找的地方 按Ctrl + Shift + g

按Ctrl + H打开搜索,其中包括通过项目、目录等进行搜索的选项。

是的,但是你需要打开全局搜索面板。 要做到这一点,按下IDE右上角的双筒望远镜图标。

你甚至可以通过函数标识符、方法作用域等来过滤搜索。

Ctrl + H是最好的方法! 记得在开始搜索之前复制字符串!