在Eclipse中的新窗口中打开文件进行编辑

时间:2014-08-19 13:51:50

标签: java eclipse plugins eclipse-plugin

我需要在Eclipse中使用文本编辑器打开一个文件。我需要在一段代码中执行此操作。我有文件名和文件路径存储在不同的变量中。我怎样才能做到这一点 ? 谢谢 !

1 个答案:

答案 0 :(得分:2)

这样的事情:

// Get the current page

IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
IWorkbenchPage page = window.getActivePage();

// Get IFile

IPath path = new Path("workspace relative path");
IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(path);

// Open default editor for the file

IDE.openEditor(page, file, true);

如果您的文件不在当前工作区中,则可以使用:

File file = new File("path to file");

IFileStore fileStore = EFS.getStore(file.toURI());

IDE.openEditorOnFileStore(page, fileStore);

某些编辑可能不喜欢工作区中没有的文件。

要打开特定编辑器,您可以使用:

IDE.openEditor(page, file, "editor id");

例如org.eclipse.ui.DefaultTextEditor用于基本文本编辑器。