您的位置:首页 > 编程语言 > Java开发

MyEclipse 7.0G安装SVN插件

2011-05-06 00:14 323 查看
 

1.将下载的site-1.6.15.zip文件解压到D:/Genuitec/Common/extend/svn1.6.15文件夹中

2.写一个java类,如下所示:

]/**
* MyEclipse 7.0G安装插件代码生成器
* @author Administrator
*/
public class CreatePluginsConfig {
private String path;
public CreatePluginsConfig(String path) {
this.path = path;
}
@SuppressWarnings("unchecked")
public void print() {
List 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) {
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;
}
String[] filenames = fileName.split("_");
String filename1 = filenames[0];
String filename2 = filenames[1].substring(0, filenames[1].lastIndexOf("."));
result = filename1 + "," + filename2 + ",file:/" + path + "//" + fileName + ",4,false";
System.out.println(result);
}
}
}
public List getFileList(String path) {
path = getFormatPath(path);
path = path + "/";
File filePath = new File(path);
if (!filePath.isDirectory()) {
return null;
}
String[] filelist = filePath.list();
List filelistFilter = new ArrayList();
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) throws IOException {
new CreatePluginsConfig("D://Genuitec//Common//extend//svn1.6.15//plugins").print(); // 插件路径
}
}
 3.找到文件D:/Genuitec/MyEclipse 7.0/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info后打开,运行第2步的Java类,将输出的结果复制后粘贴到文件bundles.info的最后,然后重启MyEclipse就OK了。

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息