今天MyEclipse10.6出了点问题,所以重装了它,同一时候也把svn的插件重装了一次,把网上资源和自己的经历顺便在博客这里记录一下。建议直接看方法一好了,简单方便,不必要折腾太多。

下来

方法一:直接解压法

下载地址:http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240

下载SVN插件:site-1.8.22.zip

解压后将其所有文件拷贝至:D:\MyEclipse\MyEclipse 10.6\dropins(MyEclipse的安装文件夹)

重新启动MyEclipse就可以出现SVN!

(补充说明一下,把下载到svn插件里面的文件(含有features等文件)copy到上面举样例的文件夹,重新启动MyEclipse后能在import项目那里看到例如以下类似例如以下图的“SVN”。呵呵,那就恭喜你,你安装插件成功了)

watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQveWFuZ19iZXN0/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="">

方法二:link安装

安装subclipse, MyEclipse9.0 SVN插件

1、从官网下载site-1.6.10.zip文件,网址是:subclipse.tigris.org,

2、从中解压出features与 plugins目录,拷贝到E:\MyEclipse\myPlugin\svn里面,其他的*.xml文件不要。

3、在 E:\MyEclipse\MyEclipse9.0\dropins下新建文件svn.link,内容是:path=E:\\MyEclipse \\myPlugin\\svn保存。

4、(唛呆儿:这一步不确定,先不要删除)删除E:\MyEclipse\MyEclipse8.5\configuration \org.eclipse.update目录

5、重新启动myeclipse就一切正常了。

[/size]

以上两种方法都尝试成功

方法三:在线安装

1.打开HELP->MyEclipse Configuration

Center。切换到SoftWare标签页。

2.点击Add Site 打开对话框。在对话框Name输入Svn。URL中输入:http://subclipse.tigris.org/update_1.6.x

3.在左边栏中找到Personal Site中找到SVN展开。将Core SVNKit Library和Optional JNA

Library加入(右键Add to Profile),Subclipse以下的Subclipse Integration for Mylyn

3.0能够不加入(特别注意,此处不要加入)。

4.在右下角窗格(Pending Changes )中点击Apply。安装重新启动后MyEclipse就可以。

方法四:肯定可行的方法

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

亲測方法一多次,屡试成功。祝团队协作开发愉快!

MyEclipse10.6 安装SVN插件方法及插件下载地址的更多相关文章

  1. LINUX安装SVN+添加自动同步+远程下载最新代码

    LINUX安装SVN+添加自动同步+远程下载最新代码---------------------1. 新建一个用户:svnroot ,以下操作非特别说明皆为root用户操作--------------- ...

  2. MyEclipse 安装SVN插件方法及插件下载地址

    直接解压法 下载地址:http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240下载SVN插件:site-1.x.x. ...

  3. Eclipse 下安装 SVN的方法

    http://welcome66.iteye.com/blog/1845176 eclipse里安装SVN插件,一般来说,有两种方式: 直接下载SVN插件,将其解压到eclipse的对应目录里 使用e ...

  4. 【转】Eclipse插件大全介绍及下载地址

    转载地址:http://developer.51cto.com/art/200906/127169.htm 尚未一一验证. eclipse插件大全介绍,以及下载地址 Eclipse及其插件下载网址大全 ...

  5. Flash Activex NPAPI PPAPI 各种网页插件完整安装包下载地址

    内容全部是自己手工原创写作的参考内容,完全排除从其他网站COPY的内容信息.如有雷同实属巧合.   奉献给有需求的人士,也给各位解决FLASH安装头疼的问题,正常在线下载安装运气不好的安装半天.运气好 ...

  6. Genymotion的安装与使用(附百度云盘下载地址,全套都有,无需注册Genymotion即可使用)

    http://blog.csdn.net/scythe666/article/details/70216144 附百度云盘下载地址 :http://pan.baidu.com/s/1jHPG7h8 1 ...

  7. 安装ORACLE时 各Linux版本下载地址

    oracle linux :https://edelivery.oracle.com/osdc/faces/SearchSoftware 需要注册oracle账号 redhat官方下载 https:/ ...

  8. win10 安装oracle 11gR2_database(内附下载地址)

    前言:想要为了后续开展项目做准备,而且打算使用oracle,所以必须先安装oracle.本机 win 10 64位系统. 第一步,下载 oracle 下载地址,官网(需要登录注册): http://d ...

  9. myeclipse9或myeclipse10安装svn的方法

    下载最新的SVN包   site-1.6.5.zip 从中解压出features与plugins文件夹,复制到C:\toBeInstalledSVN 里面,其它的*.xml文件不要 复制下列java代 ...

随机推荐

  1. 深度介绍Linux内核是如何工作的

    本文发表于Linux Format magazine杂志,作者从技术深度上解释了Linux Kernel是如何工作的.相信对Linux开发者来说有不小的帮助. 牛津字典中对"kernel&q ...

  2. iOS开发-多线程编程技术(Thread、Cocoa operations、GCD)

    简介 在软件开发中,多线程编程技术被广泛应用,相信多线程任务对我们来说已经不再陌生了.有了多线程技术,我们可以同做多个事情,而不是一个一个任务地进行.比如:前端和后台作交互.大任务(需要耗费一定的时间 ...

  3. Linux 设置IP,gate, 以及自动获取IP的方法

    一.使用命令设置ubuntu的ip地址 1.修改配置文件blacklist.conf禁用IPV6: sudo vi /etc/modprobe.d/blacklist.conf 2.在文档最后添加 b ...

  4. Json序列化之.NET开源类库Newtonsoft.Json

    上代码: using System; using System.Collections; using System.Collections.Generic; using System.IO; usin ...

  5. Python Unicode 转换 字符串

    estimate_price = "\u00a340\u00a0\u00a0-\u00a060" sold_price = "Sold for \u00a345" ...

  6. Python 实int型和list相互转换 现把float型列表转换为int型列表 把列表中的数字由float转换为int型

    第一种方法:使用map方法 >>> list = [, ] #带有float型的列表 >>> int_list = map(int,list) #使用map转换 & ...

  7. atitit.自己动手开发编译器and解释器(1) ------词法分析--attilax总结

    atitit.自己动手开发编译器and解释器(1) ------词法分析--attilax总结 1.   应用场景:::DSL 大大提升开发效率 1 2. 2. 流程如下::: 词法分析(生成toke ...

  8. CXAnimation.h动画类

    /**************************************************************************** 使用一个CCAnimation对象可以CCS ...

  9. CXSprite.cpp文件

    #include "XSprite.h" CXSprite::CXSprite(void) { m_strPic.clear(); } CXSprite::~CXSprite() ...

  10. tracert路由跟踪工具使用方法

    1. 路由跟踪在线Tracert工具说明 Tracert(跟踪路由)是路由跟踪实用程序,用于确定 IP 数据报访问目标所采取的路径.Tracert 命令用 IP 生存时间 (TTL) 字段和 ICMP ...