Eclipse 自定义插件Open Explorer 追加快捷键

Eclipse中打开文件 ,可以使用系统的 System Explorer ,但是操作步骤相对繁琐,而且没有快捷键设置.

在这里插入图片描述

Open Explorer 很好的解决了这个可以,既可以在工具栏中点击,也可以直接出现在右键菜单中 ,但是有时候感觉还是没有快捷键操作方便.

在这里插入图片描述
在这里插入图片描述

不过Eclipse可以自定义插件, 可以通过 Plug-in-Project 创建一个基本的插件项目,

在这里插入图片描述

创建一个简单的plug项目

在这里插入图片描述

然后可以通过jar反编译插件来获取Open Explorer的源码 ,并save all 所有的java源码,然后可以通过自己来动手 添加一个快捷键

在这里插入图片描述

为了与openExplorer共存,那么定义自己的插件名为openMyExplorer ,然后 创建好包名,拷贝所有的open Explorer的代码至src . (下图多了一个OpenExplorerHandler.java 待会解释), 拷贝完源码之后 ,可能会有疑问, 现在类名的名称没变,但是包名变了, 所以 还需要拷贝plugins.xml

在这里插入图片描述

在plugins.xml的编辑器中你需要修改原来class指向, 如果需要与Open Explorer共存的话, 所有id 也需要修改.那么 可以不用Extensions这个页面,直接使用Xml编辑器

在这里插入图片描述

修改完成之后,你可以运行Eclipse Application来执行这个插件, 同时在Console中可以看到启动的日志, 如果配置的类的路径不对,名字不对, 在点击你自己的插件过程中,会有明显的报错

在这里插入图片描述


废话结束,开始主题, 如果绑定快捷键的话 ,需要使用eclipse的快捷键接口添加 3个依赖 ,在extension页面直接搜索拓展的名称,既可以添加

<extension
         point="org.eclipse.ui.handlers">
      <handler
            class="openmyexplorer.actions.OpenExplorerHandler"
            commandId="openMyExplorer.commands.openExplorerCommand">
      </handler>
   </extension>
      <extension
         point="org.eclipse.ui.handlers">
      <handler
            class="openmyexplorer.actions.OpenExplorerHandler"
            commandId="openMyExplorer.commands.openExplorerCommand">
      </handler>
   </extension>
      <extension
         point="org.eclipse.ui.bindings">
      <key
            commandId="openMyExplorer.commands.openExplorerCommand"
            contextId="org.eclipse.ui.contexts.window"
            schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
            sequence="M1+`">
      </key>
   </extension>

在这里插入图片描述

创建分类,自定义id 和name

在这里插入图片描述

创建命令名称 ,绑定上分类id ,自定义id 和name (name为keys上的名称)

在这里插入图片描述

给命令绑定触发的handler ,OpenExplorerHandler.java源码如下,核心方法都是从Open Explorer的AbstractOpenExplorerAction.java拷贝进来, 抽象类中主要是需要实现window ,shell,currentSelection,systemBrowser 这个对象的值

在这里插入图片描述

package openmyexplorer.actions;

import java.io.IOException;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IResource;
import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jface.viewers.ITreeSelection;
import org.eclipse.jface.viewers.TreePath;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.handlers.HandlerUtil;

import openmyexplorer.util.Messages;
import openmyexplorer.util.OperatingSystem;

public class OpenExplorerHandler extends AbstractHandler {
	protected IWorkbenchWindow window;
	protected Shell shell;
	protected ISelection currentSelection;
	protected String systemBrowser;

	public OpenExplorerHandler() {
		this.systemBrowser = OperatingSystem.INSTANCE.getSystemBrowser();
	}

	@Override
	public Object execute(ExecutionEvent event) throws ExecutionException {
		// 系统路径
		if (OperatingSystem.INSTANCE.isLinux()) {
			this.systemBrowser = OperatingSystem.INSTANCE.getSystemBrowser();
		}
		window = HandlerUtil.getActiveWorkbenchWindowChecked(event);
		StringBuilder sb = new StringBuilder();
		sb.append("-------------------------------------------------------------").append("\n");
		sb.append(formatInfo("systemBrowser")).append(systemBrowser).append("\n");
		this.currentSelection = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getSelection();
		if (this.currentSelection instanceof ITreeSelection) {
			sb.append(formatInfo("currentSelection")).append(ITreeSelection.class.getSimpleName()).append("\n");;
		}
		if (this.currentSelection instanceof ITextSelection) {
			sb.append(formatInfo("currentSelection")).append(ITextSelection.class.getSimpleName()).append("\n");;
		}
		if (this.currentSelection instanceof IStructuredSelection) {
			sb.append(formatInfo("currentSelection")).append(IStructuredSelection.class.getSimpleName()).append("\n");
		}
		sb.append("-------------------------------------------------------------").append("\n");
		System.out.println(sb);
		try {
			if ((this.currentSelection == null) || (this.currentSelection.isEmpty())) {
				return null;
			}
			if ((this.currentSelection instanceof ITreeSelection)) {

				ITreeSelection treeSelection = (ITreeSelection) this.currentSelection;

				TreePath[] paths = treeSelection.getPaths();

				for (int i = 0; i < paths.length; i++) {
					TreePath path = paths[i];
					IResource resource = null;
					Object segment = path.getLastSegment();
					if ((segment instanceof IResource))
						resource = (IResource) segment;
					else if ((segment instanceof IJavaElement)) {
						resource = ((IJavaElement) segment).getResource();
					}
					if (resource != null) {
						String browser = this.systemBrowser;
						String location = resource.getLocation().toOSString();
						if ((resource instanceof IFile)) {
							location = ((IFile) resource).getParent().getLocation().toOSString();
							if (OperatingSystem.INSTANCE.isWindows()) {
								browser = this.systemBrowser + " /select,";
								location = ((IFile) resource).getLocation().toOSString();
							}
						}
						openInBrowser(browser, location);
					}
				}
			} else if (((this.currentSelection instanceof ITextSelection))
					|| ((this.currentSelection instanceof IStructuredSelection))) {
				IEditorPart editor = this.window.getActivePage().getActiveEditor();
				if (editor != null) {
					IFile current_editing_file = (IFile) editor.getEditorInput().getAdapter(IFile.class);
					String browser = this.systemBrowser;
					String location = current_editing_file.getParent().getLocation().toOSString();
					if (OperatingSystem.INSTANCE.isWindows()) {
						browser = this.systemBrowser + " /select,";
						location = current_editing_file.getLocation().toOSString();
					}
					openInBrowser(browser, location);
				}
			}
		} catch (Exception e) {
			MessageDialog.openInformation(window.getShell(), "打开资源管理器异常", e.getMessage() + "!!!");
		}
		return null;
	}

	protected void openInBrowser(String browser, String location) {
		try {
			if (OperatingSystem.INSTANCE.isWindows())
				Runtime.getRuntime().exec(browser + " \"" + location + "\"");
			else
				Runtime.getRuntime().exec(new String[] { browser, location });
		} catch (IOException e) {
			MessageDialog.openError(this.shell, Messages.OpenExploer_Error,
					Messages.Cant_Open + " \"" + location + "\"");
			e.printStackTrace();
		}
	}

	public String formatInfo(String str) {
		return String.format("===%s===>", str);
	}
}

添加默认绑定键 (Ctrl+`) ,后期可以在keys中指定

在这里插入图片描述

添加一个图片,需要16px*16px

在这里插入图片描述

运行结果 ,如果Console中无报错, 图标出现,说明完成了

在这里插入图片描述

在keys 中查看 , 那么你可以通过快捷键打开文件管理器了

在这里插入图片描述

动手党==> 项目源码Git地址

Just Go Try It !==> 插件下载地址

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值