`
ponlya
  • 浏览: 160095 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

Myeclipse9安装SVN

 
阅读更多

m9不再使用plugin方式安装插件了,网上找来其现用程度来安装,以SVN安装为例:
1.网上下载svn-eclipse-site-1.6.10.zip解压之到某个目录;
2.备份myeclipse9\configuration\org.eclipse.equinox.simpleconfigurator\bundles.info;
3.m9中新建一java类,内容如下:
package com;

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

/**
 * MyEclipse 7.5 (2009-12-1) 插件配置代码生成器
 *
 * 来自网络,出处已不详
 */
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 = "C:\\SetUp\\Java\\myeclipse9\\myplugin\\svn16";
        new PluginConfigCreator().print(plugin);
    }
}

String plugin = "C:\\SetUp\\Java\\myeclipse9\\myplugin\\svn16";这里的svn16下即是解压后的svn的plugin与features目录

运行该文件后,把控制台上生成的一长串全部追加拷贝到bundles.inf文件中;

4.重启m9.

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics