码迷,mamicode.com
首页 > 系统相关 > 详细

Eclipse简单插件开发-启动时间提示

时间:2017-07-19 00:23:16      阅读:432      评论:0      收藏:0      [点我收藏+]

标签:jar   ack   shel   enc   star   pre   public   fragments   idg   

1、新建Plug-in Project

技术分享

技术分享

不用改其他选项,直接点击“Next”,然后点击“Finish”
 

2、新建ShowTime.java

技术分享

package com.developer.showtime;

import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IStartup;

public class ShowTime implements IStartup{

    @Override
    public void earlyStartup() {
        Display.getDefault().syncExec(new Runnable(){

            @Override
            public void run() {
                long eclipseStartTime = Long.parseLong(System.getProperty("eclipse.startTime"));
                long costTime = System.currentTimeMillis() - eclipseStartTime;
                Shell shell = Display.getDefault().getActiveShell();
                String message = "eclipse 启动时间:" + costTime + "ms";
                MessageDialog.openInformation(shell, "Information", message);
            }
            
        });
    }
    
}

 

3、新建plugin.xml

右键项目,点击New File,输入plugin.xml

技术分享

技术分享

添加内容:
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.ui.startup">
         <startup class="com.developer.showtime.ShowTime"/>
   </extension>

</plugin>

 

4、修改MANIFEST.MF

将其中的Bundle-SymbolicName改为:
“Bundle-SymbolicName: com.developer.showtime;singleton:=true”
 

5、试运行

右键项目-> Run as -> Eclipse Application
技术分享
 

6、导出成jar包

右键项目-> export->Deployable plug-ins and fragments
技术分享技术分享
选择Directory,这里需要注意的是,要选择eclipse目录,不用选择plugins目录,因为会默认在$Directory/plugins下
 

7、重启eclipse

 
可能出现的错误:

1、export时报中文乱码:

技术分享技术分享

 

解决方法:在build.properties中添加一行”javacDefaultEncoding.. = UTF-8"
 

2、打出的jar包内缺少plugin.xml

不知道为什么,我的包里没有包括plugin.xml,这个问题困惑了我好久,偶然间打开jar包看了才知道。
解决方法:复制一下plugin.xml进jar包就好了

 

可供下载:http://pan.baidu.com/s/1kVOdkTh

Eclipse简单插件开发-启动时间提示

标签:jar   ack   shel   enc   star   pre   public   fragments   idg   

原文地址:http://www.cnblogs.com/mxm985/p/7203265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!