myeclipse安裝插件

1.下載插件包並解壓出features和plugins
2.方法一:拷貝到%myeclipse_home%\dropins目錄下;
  方法二:自己建個管理插件包的目錄%myplugins%,以svn爲例,在%myplugins%下建個文件夾svn,把步驟1中解壓出來的features和plugins文件夾拷貝進來,並找到

 %myecliose%\configuration\org.eclipse.equinox.simpleconfigurator的bundles.info文件裏添上一段文字就可以了(注:文字見下面)(日後只需要刪除這個svn文件夾就可以去除插件了)
3.評價:
方法一隻能將所有的插件包都放到一個features和一個plugins下,不方便日後的刪除插件;方法二靈活多變。(注:myeclipse7.5以上的版本不支持link方法安裝插件,不要再想建個link文件,寫上path路徑就可以了,全部改到 %myecliose%\configuration\org.eclipse.equinox.simpleconfigurator的bundles.info裏了)


代碼:

import java.io.File;
import java.util.ArrayList;
import java.util.List;

/**
 * MyEclipse 8.0 (2009-11-16) 插件配置代碼生成器
 */

public class PluginConfigCreator {
 public PluginConfigCreator() {
 }

 public void print(String path) {
  List<String> list = getFileList(path);
  if (list == null) {
   return;
  }

  int length = list.size();
  for (int i = 0; i < length; i++) {
   String result = "";
   String thePath = getFormatPath(getString(list.get(i)));
   File file = new File(thePath);
   if (file.isDirectory()) {
    String fileName = file.getName();
    if (fileName.indexOf("_") < 0) {
     print(thePath);
     continue;
    }
    String[] filenames = fileName.split("_");
    String filename1 = filenames[0];
    String filename2 = filenames[1];
    result = filename1 + "," + filename2 + ",file:/" + path + "/"
      + fileName + "/,4,false";
    System.out.println(result);
   } else if (file.isFile()) {
    String fileName = file.getName();
    if (fileName.indexOf("_") < 0) {
     continue;
    }
    int last = fileName.lastIndexOf("_"); // 最後一個下劃線的位置
    String filename1 = fileName.substring(0, last);
    String filename2 = fileName.substring(last + 1, fileName
      .length() - 4);
    result = filename1 + "," + filename2 + ",file:/" + path + "/"
      + fileName + ",4,false";
    System.out.println(result);
   }

  }
 }

 public List<String> getFileList(String path) {
  path = getFormatPath(path);
  path = path + "/";
  File filePath = new File(path);
  if (!filePath.isDirectory()) {
   return null;
  }
  String[] filelist = filePath.list();
  List<String> filelistFilter = new ArrayList<String>();

  for (int i = 0; i < filelist.length; i++) {
   String tempfilename = getFormatPath(path + filelist[i]);
   filelistFilter.add(tempfilename);
  }
  return filelistFilter;
 }

 public String getString(Object object) {
  if (object == null) {
   return "";
  }
  return String.valueOf(object);
 }

 public String getFormatPath(String path) {
  path = path.replaceAll("\\\\", "/");
  path = path.replaceAll("//", "/");
  return path;
 }

 public static void main(String[] args) {
  /* 你的插件的安裝目錄 */
  String plugin = "D:\\study\\MyEclipse8.0\\myplugins\\svn";
  new PluginConfigCreator().print(plugin);
 }
}



把main方法裏的String plugin賦值爲你的插件的絕對路徑,執行這個方法,控制檯輸出的就是你要的“文字”!!!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章