当前位置: 首页 > 工具软件 > OpenEditor > 使用案例 >

RCP:打开一个Editor的新窗口的实现代码

暴向笛
2023-12-01

IStructuredSelection selection = (IStructuredSelection)event.getSelection();
File file = (File)(selection.getFirstElement());
if (file != null) {
      IWorkbenchPage page = PlatformUI.getWorkbench().
                getActiveWorkbenchWindow().getActivePage();
      FileEditorInput input = new FileEditorInput(file);
      try {
            showFile = file;
            page.openEditor(input, MyFileEditor.ID);

      } catch (Exception e) {
            // TODO: handle exception
             e.printStackTrace();
      }
}


打开窗口的关键代码为: page.openEditor(input, MyFileEditor.ID);
由此可见打开一个新的Editor需要两个参数,一个是实现了IEditorInput对新建的窗口起描述作用(比如Editor的选项卡窗口的名字,提示语...)的input; 另一个是扩展org.eclipse.ui.editors的editor的id,为了使用方便,这个id一般保存在了实现类(本例中MyFileEditor由org.eclipse.ui.editors扩展而来的)的ID成员里.


备忘:运行时出现的一个错误:FileEditorInput input = new FileEditorInput(file);这一句需要特别注意,因为实现IEditorInput接口时不允许传回的参数为空,故在创建input时要先确认参数不为空.否则运行时会抛出错误.
 类似资料: