当用户切换到透视视图时,如何使eclipse插件在主视图中打开一个新文档(类似hello.txt文件)?

最佳答案

这样的事情将是此任务的典型代码:

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);

09-05 08:45