当用户切换到透视图时,如何使eclipse插件在主视图中打开一个新生成的文档(类似于hello.txt文件)?
答案 0 :(得分:1)
这样的事情就是这项任务的典型代码:
String fileContents = ...;
IFile file = ...;
file.create(new ByteArrayInputStream(fileContents.getBytes()), true, null);
FileEditorInput input = new FileEditorInput(file);
PlatformUI.getWorkbench().getActiveWorkbenchWindow().
getActivePage().openEditor(input, THE_EDITOR_ID);