Grab selected text from Eclipse Java editor(从 Eclipse Java 编辑器中抓取选定的文本)
问题描述
我正在开发一个 Eclipse 插件,在按下按钮时,该插件会在 Java 编辑器中获取选定的文本并将其放入出现的文本框中.
I'm developing an Eclipse plug-in where upon pressing a button, the plug-in takes the selected text in the Java editor and puts in a text box which appears.
我的代码如下所示:我从这里得到它:http://dev.eclipse.org/newslists/news.eclipse.newcomer/msg02200.html
My code looks like this: I got it from here: http://dev.eclipse.org/newslists/news.eclipse.newcomer/msg02200.html
private ITextSelection getSelection(ITextEditor editor) {
ISelection selection = editor.getSelectionProvider()
.getSelection();
return (ITextSelection) selection;
}
private String getSelectedText(ITextEditor editor) {
return getSelection(editor).getText();
}
问题是如何让Java 编辑器的ITextEditor
显示出来.巧合的是,这是我发布的链接中的下一个问题,但没有答案:(
The problem is how will I get the ITextEditor
of the Java editor being displayed. Coincidentally it's the next question in the thread in the link I posted but it's unanswered :(
推荐答案
你可以要求 ActiveEditor
,如 这个帖子:
IEditorPart part;
part =
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().get
ActiveEditor();
if(part instanceof ITextEditor){
ITextEditor editor = (ITextEditor)part;
IDocumentProvider provider = editor.getDocumentProvider();
IDocument document = provider.getDocument(editor.getEditorInput());
<小时>
OP Krt_Malta 提到了这个 博客条目以编程方式查询当前文本选择",类似于这个其他 SO 答案(写成 之前博客条目)替换选定的代码eclipse 编辑器通过插件命令".
The OP Krt_Malta mentions this blog entry "Programmatically query current text selection", which is similar to this other SO answer (written before the blog entry) "Replace selected code from eclipse editor through plugin command".
这篇关于从 Eclipse Java 编辑器中抓取选定的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 Eclipse Java 编辑器中抓取选定的文本
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01