Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
FAQ How do I open an editor programmatically?
Use the openEditor methods on org.eclipse.ui.IWorkbenchPage to open an editor on a given input. The openEditor methods require you to supply the ID of the editor to open. You can use the editor registry to find out what editor ID is appropriate for a given file name, using the getDefaultEditor method on IEditorRegistry. In Eclipse 3.0, the editor opening methods that were specific to IFile were moved to the IDE class.
IWorkbenchPage page = ...; IFile file = ...; IEditorDescriptor desc = PlatformUI.getWorkbench(). getEditorRegistry().getDefaultEditor(file.getName()); page.openEditor(new FileEditorInput(file), desc.getId());
This code needs to run on the UI thread and result from getActiveWorkbenchWindow() and getActivePage() need to be checked against null.
Opening External Files in Eclipse 3.3
The code below is for opening files that are not in the workspace (and hence are not IFiles) in Eclipse 3.3 and higher using EFS.
import java.io.File; import org.eclipse.core.filesystem.EFS; import org.eclipse.core.filesystem.IFileStore; import org.eclipse.ui.PartInitException; import org.eclipse.ui.IWorkbenchPage; import org.eclipse.ui.PlatformUI; import org.eclipse.ui.ide.IDE; File fileToOpen = new File("externalfile.xml"); if (fileToOpen.exists() && fileToOpen.isFile()) { IFileStore fileStore = EFS.getLocalFileSystem().getStore(fileToOpen.toURI()); IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(); try { IDE.openEditorOnFileStore( page, fileStore ); } catch ( PartInitException e ) { //Put your exception handler here if you wish to } } else { //Do something if the file does not exist }
See Also:
- FAQ Is Eclipse 3.0 going to break all of my old plug-ins?
- FAQ How do I find the active workbench page?
- FAQ How do I open an editor on a file in the workspace?
- FAQ Can I make a job run in the UI thread?
This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.