Eclipse插件

SecureX Eclipse插件 可代替java的keytool命令

 

  http://securex.sourceforge.net/updatesite

 

veoeclipse插件

 

http://veloeclipse.googlecode.com/svn/trunk/update/

 

ExtJs插件

 

http://www.spket.com/update/      http://www.agpad.com/update

 

 

MyEclipse 9.0 Velocity插件安装

 

1. 先将下载好的plugin文件解压 
2.执行下面代码 

 
  1. package t;  
  2.   
  3. import java.io.File;  
  4. import java.util.ArrayList;  
  5. import java.util.List;  
  6.   
  7. public class Velocity{  
  8.   
  9.     public Velocity() {  
  10.     }  
  11.   
  12.     public void print(String path) {  
  13.         List<String> list = getFileList(path);  
  14.         if (list == null) {  
  15.             return;  
  16.         }  
  17.   
  18.         int length = list.size();  
  19.         for (int i = 0; i < length; i++) {  
  20.             String result = "";  
  21.             String thePath = getFormatPath(getString(list.get(i)));  
  22.             File file = new File(thePath);  
  23.             if (file.isDirectory()) {  
  24.                 String fileName = file.getName();  
  25.                 if (fileName.indexOf("_") < 0) {  
  26.                     print(thePath);  
  27.                     continue;  
  28.                 }  
  29.                 String[] filenames = fileName.split("_");  
  30.                 String filename1 = filenames[0];  
  31.                 String filename2 = filenames[1];  
  32.                 result = filename1 + "," + filename2 + ",file:/" + path + "\\"  
  33.                         + fileName + "\\,4,false";  
  34.                 System.out.println(result);  
  35.             } else if (file.isFile()) {  
  36.                 String fileName = file.getName();  
  37.                 if (fileName.indexOf("_") < 0) {  
  38.                     continue;  
  39.                 }  
  40.                 int last = fileName.lastIndexOf("_");// ���һ���»��ߵ�λ��  
  41.                 String filename1 = fileName.substring(0, last);  
  42.                 String filename2 = fileName.substring(last + 1,  
  43.                         fileName.length() - 4);  
  44.                 result = filename1 + "," + filename2 + ",file:/" + path + "\\"  
  45.                         + fileName + ",4,false";  
  46.                 System.out.println(result);  
  47.             }  
  48.   
  49.         }  
  50.     }  
  51.   
  52.     public List<String> getFileList(String path) {  
  53.         path = getFormatPath(path);  
  54.         path = path + "/";  
  55.         File filePath = new File(path);  
  56.         if (!filePath.isDirectory()) {  
  57.             return null;  
  58.         }  
  59.         String[] filelist = filePath.list();  
  60.         List<String> filelistFilter = new ArrayList<String>();  
  61.   
  62.         for (int i = 0; i < filelist.length; i++) {  
  63.             String tempfilename = getFormatPath(path + filelist[i]);  
  64.             filelistFilter.add(tempfilename);  
  65.         }  
  66.         return filelistFilter;  
  67.     }  
  68.   
  69.     public String getString(Object object) {  
  70.         if (object == null) {  
  71.             return "";  
  72.         }  
  73.         return String.valueOf(object);  
  74.     }  
  75.   
  76.     public String getFormatPath(String path) {  
  77.         path = path.replaceAll("\\\\", "/");  
  78.         path = path.replaceAll("//""/");  
  79.         return path;  
  80.     }  
  81.   
  82.     public static void main(String[] args) {  
  83.         /* 你的插件路径,即plugin解压的路径 */  
  84.         String plugin = "C:\\Users\\Administrator\\Desktop\\plugins";  
  85.         new Velocity().print(plugin);  
  86.     }  
  87. }  



3.将控制台输出信息粘贴到 MyEclipse 路径下的 
\MyEclipse 9\configuration\org.eclipse.equinox.simpleconfigurator\bundles.info 
(请做好备份) 

 

 

easyExplorer 插件,在使用Eclipse是可以选中文件打开文件所在目录

http://easystruts.sourceforge.net/update.html

OpenExplorer插件

 

resin插件(只有4.0)

http://caucho.com/eclipse/

 

update url (http://easystruts.sourceforge.net/eclipse/updates/site.xml)

 

 

AntView ant部署打包插件

http://r2tech-eclipse.sourceforge.net/

 

eclipse 通过hibernate 同步数据库

http://www.binamics.com/hibernatesync/

 

 

eclipse 插件

http://blog.csdn.net/miaoling1201/article/details/3336065

 

 

eclipse hibernate将数据库表生成映射文件 在线更新地址

http://hiberclipse.sourceforge.net/siteupdate_3

 

android 插件

http://dl-ssl.google.com/android/eclipse/

 

下载Android开发包 — Android SDK
到Google的官方网站下载Android的开发包For Windows的

 

让Ecplise自动安装Android开发插件(ADT- plugin)
(1)启动安装完(解压)后的Ecplise目录下的Ecplise.exe
     
(2)点击菜单”Help”->”Software Updates”,在打开的窗口中切换到选项页”Availabe Software”
   
(3)点击”Add site…”,加入以下地址: http://dl-ssl.google.com/android/eclipse/ 然后点击”OK”
   
(4)刚才加入的地址,点击”Install…”进行ADT(Android Development Tools)的安装工作.
    
(5)Ecplise此时会从加入的地址中自动下载跟安装ADT,稍等一会,安装完毕后,提示需要重启Ecplise,点击”OK”重启Ecplise

 

配置Andiord SDK路径
重启完Ecplise后,点击菜单”Window”->”Preference”,打开了配置窗口,在左边选中Android,在右边输入Android SDK的路径(刚才步骤1-(3)下载的Android SDK解压出来的目录),点击”OK”,至此环境配置完毕.

 

 

 

 

 

Hibernate Tools插件

 http://download.jboss.org/jbosstools/updates/stable/helios/

 

 

EclipseColorer

http://colorer.sf.net/eclipsecolorer/

 

加速插件(内存插件)

keepresident   

http://suif.stanford.edu/pub/keepresident

 

 

 

 

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值