eclipse插件开发打开编辑器

eclipse插件开发打开编辑器

ID:8803634

大小:14.16 KB

页数:2页

时间:2018-04-08

eclipse插件开发打开编辑器_第1页
eclipse插件开发打开编辑器_第2页
资源描述:

《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"";}

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。