Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ How do I open an editor programmatically?"

(See Also:)
Line 1: Line 1:
Use the <tt>openEditor</tt> methods on <tt>org.eclipse.ui.IWorkbenchPage</tt> to open an editor on a given input. The <tt>openEditor</tt> 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 <tt>getDefaultEditor</tt> method on <tt>IEditorRegistry</tt>. In Eclipse 3.0, the editor opening methods that were specific to <tt>IFile</tt> were moved to the <tt>IDE</tt> class.
+
First of all, this works on eclipse 3.3.0. I haven't tried the codes on the other versions of eclipse.
 +
 
 +
 
  
 
<pre>
 
<pre>
  IWorkbenchPage page = ...;
+
            import java.io.File;
  IFile file = ...;
+
 
  IEditorDescriptor desc = PlatformUI.getWorkbench().
+
            import org.eclipse.core.filesystem.EFS;
      getEditorRegistry().getDefaultEditor(file.getName());
+
            import org.eclipse.core.filesystem.IFileStore;
  page.openEditor(
+
 
      new FileEditorInput(file),
+
            import org.eclipse.ui.PartInitException;
      desc.getId());
+
            import org.eclipse.ui.IWorkbenchPage;
 +
            import org.eclipse.ui.PlatformUI;
 +
            import org.eclipse.ui.ide.IDE;
 +
 
 +
 
 +
 
 +
 
 +
            File fileToOpen = new File( textField.getText() );
 +
 
 +
            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 )
 +
                {
 +
                    //Create your error handler codes here
 +
                }
 +
            }
 +
            else
 +
            {
 +
                //You may do something if the file is not a file and the file does not exist
 +
            }
 
</pre>
 
</pre>
  
This code needs to run on the UI thread and result from getActiveWorkbenchWindow() and getActivePage() need to be checked against null.
+
 
 +
 
 
== See Also: ==
 
== See Also: ==
 
*[[FAQ Is Eclipse 3.0 going to break all of my old plug-ins?]]
 
*[[FAQ Is Eclipse 3.0 going to break all of my old plug-ins?]]

Revision as of 00:01, 25 February 2008

First of all, this works on eclipse 3.3.0. I haven't tried the codes on the other versions of eclipse.


            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( textField.getText() );

            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 )
                {
                    //Create your error handler codes here
                }
            }
            else
            {
                //You may do something if the file is not a file and the file does not exist
            }


See Also:


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.

Back to the top