在 eclipse 中搜索 *.class 文件
是否可以在 eclipse 中搜索 .class 文件(来自参考库)中的术语(例如方法名称)(我可以使用 JD Java Decompiler 自动查看它们,因此如果我浏览各种类文件,我可以找到我想要的内容)正在寻找视觉或通过搜索每个单独的文件)。我有一个关于定位类的类似问题,并被告知使用 ctrl + alt + h,它允许您在 .class 文件中定位给定类的类层次结构,但该方法似乎不允许人们找到通过名称或结构(例如方法或变量)来表示接口。
Is it possible to search for terms (such as method names) in .class files (from Referenced Libraries) in eclipse (I am able to view them automatically with JD Java Decompiler, so if I go through various class files I can find what I'm looking for visually or by searching each individual file). I've had a similar question about locating classes and was told to use ctrl + alt + h, which allows you to locate the class hierarchy of a given class in a .class file, but that method does not seem to allow one to find interfaces by name or constructs such as methods or variables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Ctrl+H->Java搜索->搜索方法
等Ctrl+H->Java Search->Search for Method
, etc, etcCtrl + H 将打开“搜索/查找”对话框。其中一个选项卡是 Java,它可以让您指定您到底要查找的内容,例如 Class/MNethod 等。
Ctrl + H will bring up a Search/Find dialog. One of the tabs is Java which will let you specify what exactly you are looking for e.g. Class/MNethod etc.