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


当前回答

可以使用Ctrl + Alt + G在eclipse的工作区中查找所选文本。

OSX:“选项+⌘命令+ G”

其他回答

1. Ctrl + H 2. 选择“文件搜索”在工作区/所选项目中进行纯文本搜索

对于特定的表达式搜索,选择相关的选项卡(例如允许您搜索特定标识符的Java Search)

整个项目搜索:

3.范围(在表单部分)>封闭项目(单选按钮选择)。

Ctrl + H。

同时,

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

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

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

选择“文件搜索”在工作区/所选项目中进行纯文本搜索 对于特定的表达式搜索,选择相关的选项卡(例如允许搜索特定标识符的Java Search)

其他人已经忘记了用Ctrl+Shift+L进行简单的文本搜索。它到处搜索,而且又快又有效。这可能是一个Sprint工具套件,它是eclipse的扩展(它可能在更新的版本中可用)

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.