简单的Eclipse插件打开新文档

时间:2011-04-12 20:07:20

标签: java eclipse eclipse-plugin

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

1 个答案:

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