myeclipse9.0 M1安装aptana插件

安装步骤:

1、下载aptana3.2 Eclipse Plugin插件.

下载地址:http://update1.aptana.org/studio/3.2/024747/index.html

2、 首先找到bundles.info文件。

bundles.info在myeclipses安装目录下的

configuration\org.eclipse.equinox.simpleconfigurator,最好先备份

org.eclipse.equinox.simpleconfigurator一下。

3、创建myplugin文件夹。

在安装目录下创建myplugin文件夹,把下载aptana3.2 Eclipse Plugin解压出来中的

features与plugins文件夹放进myplugin文件夹中

4、在创建一个Java文件

创建Java文件运行下面的代码:

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

/**
* MyEclipse9.0 M1 插件配置代码生成器
*/
public class getKeyCode{
public getKeyCode() {

}

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 filenameOne = filenames[0];
    String filenameTwo = filenames[1];
    result = filenameOne + "," + filenameTwo + ",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 filenameOne = fileName.substring(0, last);
    String filenameTwo = fileName.substring(last + 1,
      fileName.length() - 4);
    result = filenameOne + "," + filenameTwo + ",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 = "E:\\myeclipse\\myplugin";
  new getKeyCode().print(plugin);
}

5、把控制台打印出来的信息复制到bundles.info文件。切记不能覆盖原先bundles.info文件中的代码。

6、温馨提示:

对与myeclipse9.0 M1 采用安装目录下创建dropgins或者links文件,在他们中创建

aptana.link文件中写 path = 插件的路径,这两种方式安装aptana插件是不成功的!本

人调试过,不过你们有人采用这种两种方式安装aptana插件成功,麻烦告知

你可能感兴趣的:(aptana插件)