方法三:直接解压
      下载SVN插件:site-1.6.10.zip
      解压后将其全部文件拷贝至:D:\Program Files\Genuitec\MyEclipse 8.5\dropins(MyEclipse的安装目录)
      重启MyEclipse即可出现SVN!

方法四:肯定可行的方法

1、下载最新的SVN包:
      http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240
      2、在你的磁盘上任意位置创建文件夹:“myplugins/svn”。名字可以任取,为了方便插件管理,建议名称为“myplugins”。
      3、将解压的svn里的两个文件夹拷贝到“myplugins/svn”下。
      4、复制下列java代码,修改路径并执行:
      package app;
      import java.io.File;
      import java.util.ArrayList;
      import java.util.List;
      /**
      * MyEclipse9 插件配置代码生成器
      *
      *
      */
      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 = "改成安装目录//Genuitec//svn";
      new PluginConfigCreator().print(plugin);
      }
      }
      这里需要注意的是修改成为刚才svn所在路径,建议改为绝对路径。比如d:/myplugins/svn/。。。
      5、 找到“$myeclipse_home/configuration /org.eclipse.equinox.simpleconfigurator/”,打开其中的“bundles.inf”文件,为了防止分不清是不 是我们自己后加的东西,在最后面多回几次车,然后粘贴第4步运行后的代码,保存
      6、重启myeclipse

myEclipse配置SVN的更多相关文章

  1. myeclipse配置svn亲测

    1.安装目录更改为myeclipse install 目录:E:\MyEclipse85\MyEclipse 8.5common 目录:           E:\MyEclipse85\Common ...

  2. myeclipse配置SVN插件

    方法一:link安装  安装subclipse, MyEclipse SVN插件  1.从官网下载最新的site-1.x.x.zip文件,网址是:folderID=2240" target= ...

  3. myeclipse 配置svn

    方法三:直接解压下载SVN插件:site-1.6.10.zip解压后将其全部文件拷贝至:D:\Program Files\Genuitec\MyEclipse 8.5\dropins(MyEclips ...

  4. myeclipse 配置svn资源库

    只需在dropins文件夹里放入features,plugins两个文件夹:访问这个路径下载即可:http://pan.baidu.com/s/1dDnJKXF

  5. SVN安装与配置 SVN整合MyEclipse

    SVN安装: 1.安装服务器 ######### 安装文件:SVN服务器############### # http://www.collab.net/downloads/subversion # C ...

  6. Myeclipse下配置svn

    转载高鑫的..嘻嘻.. MyEclipse安装配置SVN 2013.10.15 No Comments 67 Views 配置之前请先关闭MyEclipse,OK开始了 1.解压site-1.6.18 ...

  7. Myeclipse 2014配置SVN详细图解

    1.什么是SVN? 管理软件开发过程中的版本控制工具. 2.myeclipse安装SVN插件步骤,以myeclipse 2014为例. (1)下载SVN插件 http://subclipse.tigr ...

  8. Myeclipse安装SVN插件(转)

    方法一:在线安装 1.打开HELP->MyEclipse Configuration Center.切换到SoftWare标签页. 2.点击Add Site 打开对话框,在对话框Name输入Sv ...

  9. MyEclipse使用SVN进行项目版本控制

    一.搭建SVN服务器. 例如,使用VisualSVN Server,下载后安装. (1)在Repositories(版本库)上右击,新建Repository,选择Regular FSFS reposi ...

随机推荐

  1. 【算法】论平衡二叉树(AVL)的正确种植方法

    参考资料 <算法(java)>                           — — Robert Sedgewick, Kevin Wayne <数据结构>       ...

  2. nginx搭建rtmp协议流媒体服务器总结

    最近在 ubuntu12.04+wdlinux(centos)上搭建了一个rtmp服务器,感觉还挺麻烦的,所以记录下. 大部分都是参考网络上的资料. 前提: 在linux下某个目录中新建一个nginx ...

  3. jmeter远程分布执行遇到的网卡坑(A Test is currently running,stop or ....)

    周末加班做一个项目app的性能测试,单机负载时由于公司给每个人的网络带宽上传下载流量就1M,300个用户并发就已经网络IO饱和了,虽然和相关部门协调过资源问题,但是收效甚微,因此打算先用分布部署压力机 ...

  4. java 类的继承和接口的继承

    父类 public class person { String name; int age; void eat(){ System.out.println("吃饭"); } voi ...

  5. Oracle添加记录的时候报错:违反完整性约束,未找到父项关键字

    今天需要向一个没有接触过的一个Oracle数据库中添加一条记录,执行报错: 分析: 报错的根本原因:未找到父项关键字的原因是因为你在保存对象的时候缺失关联对象. 问题的解决思路:先保存关联对象后再保存 ...

  6. redis 安装方式

    1 参考网址 https://www.cnblogs.com/ahjx1628/p/6496529.html https://www.cnblogs.com/smail-bao/p/6164132.h ...

  7. Oracle绑定变量优缺点

    参考:http://f.dataguru.cn/thread-208881-1-1.html 参考:http://blog.sina.com.cn/s/blog_4d9ece9a0100caw8.ht ...

  8. window.atob()与window.btoa()方法实现编码与解码

    window.atob() 与window.btoa() WindowBase64.atob() 函数用来解码一个已经被base-64编码过的数据.你可以使用 window.btoa() 方法来编码一 ...

  9. 【python3之文件操作】

    一.文件操作 1.文件处理的流程 1)打开文件,得到文件句柄并赋值给一个变量 2)通过句柄对文件进行操作 3)关闭文件 例如: f = open('chenli.txt') #打开文件 first_l ...

  10. 基于SpringBoot开发一个Restful服务,实现增删改查功能

    前言 在去年的时候,在各种渠道中略微的了解了SpringBoot,在开发web项目的时候是如何的方便.快捷.但是当时并没有认真的去学习下,毕竟感觉自己在Struts和SpringMVC都用得不太熟练. ...