欢迎来到天天文库
浏览记录
ID:8803634
大小:14.16 KB
页数:2页
时间:2018-04-08
《eclipse插件开发打开编辑器》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、Eclipse插件开发打开当前项目的编辑器IWorkbenchWindowdwindow=PlatformUI.getWorkbench().getActiveWorkbenchWindow();IWorkbenchPagewbPage=dwindow.getActivePage();//获取当前项目的名称Stringprojectname=getCurrentProjectName();//如果无法获取当前项目名称,可以直接指定要打开编辑器的项目名称eg:打//开名称为project1的项目下的编辑器。//IProjectproject=//Resou
2、rcesPlugin.getWorkspace().getRoot().getProject(“pr//oject1”);IProjectproject=ResourcesPlugin.getWorkspace().getRoot().getProject(projectname);//获取要打开的文档的相对路径Stringpathname=getCurrentPathName();//如果无法获取,可以直接指定路径eg:test/test1.txt//IFilejava_file=project.getFile(new//Path(“test/test
3、1.txt”));IFilejava_file=project.getFile(newPath(pathname));try{IDE.openEditor(wbPage,java_file);}catch(PartInitExceptione){e.printStackTrace();}//我项目中用到的获取项目名称与路径名称的方法/***获取当前文档路径名称**@return*/publicStringgetCurrentPathName(){IEditorParteditor=((DefaultEditDomain)(super.getViewer(
4、).getEditDomain())).getEditorPart();IEditorInputinput=editor.getEditorInput();if(inputinstanceofIFileEditorInput){IFilefile=((IFileEditorInput)input).getFile();Stringpath=file.toString();Stringpathname=path.substring(path.lastIndexOf('/')+1);pathname=pathname.substring(0,pathname
5、.length()-4);pathname=pathname+"/"+pathname+".mpe";returnpathname;}return"";}/***获取当前选择项目名称**@return*/publicStringgetCurrentProjectName(){IEditorParteditor=((DefaultEditDomain)(super.getViewer().getEditDomain())).getEditorPart();IEditorInputinput=editor.getEditorInput();if(inputi
6、nstanceofIFileEditorInput){IFilefile=((IFileEditorInput)input).getFile();Stringproject=file.toString();Stringprjectname=project.substring(project.indexOf('/')+1);intlen=prjectname.indexOf('/');prjectname=prjectname.substring(0,len);returnprjectname;}return"";}
此文档下载收益归作者所有