`

myeclipse安装插件

    博客分类:
  • util
阅读更多
    myeclipse自从7.0后就不再提供link安装,而是采用在bundles.info文件写入配置信息的方式安装插件。具体步骤如下:
       1) 首先bundles.inf文件在myeclipses安装目录下的...\MyEclipse7.5\configuration\org.eclipse.equinox.simpleconfigurator。最好先备份一下。
       2) 然后你可以在myeclipse下建立一个文件夹myplugin来存放你需要安装的插件,将你需要安装的插件放到这个目录下。
       3)然后新建一个java文件,创建如下内容
Java代码
package app;   
  
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 = "D:\\Program Files\\MyEclipse7.5\\Common\\myplugin\\aptana2.0";   
        new PluginConfigCreator().print(plugin);   
    }   
}  

package app;

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 = "D:\\Program Files\\MyEclipse7.5\\Common\\myplugin\\aptana2.0";
		new PluginConfigCreator().print(plugin);
	}
}

     注意需要修改main函数里的参数,定位到你刚才新建的文件夹下。运行该java文件,将输出结果全部拷贝到bundles.inf文件中。
       4)最后重启myeclipse就可以了。
分享到:
评论

相关推荐

    myeclipse安装插件的方法

    本篇主要介绍如何在MyEclipse中安装SVN(Subversion)插件,以实现版本控制功能。 首先,了解SVN插件的作用。SVN是一种版本控制系统,它允许开发者对项目代码进行版本管理,跟踪文件的修改历史,方便团队协作和代码...

    MyEclipse安装freemarker插件

    本话题主要关注如何在MyEclipse中安装Freemarker插件,以便更好地支持Freemarker模板语言的开发。 Freemarker是一款开源的、基于模板的动态语言,常用于Web应用中的视图层,与Spring MVC等框架配合使用,能够生成...

    myeclipse安装svn插件

    确保解压后的文件夹结构符合MyEclipse插件的要求,通常会包含一些.jar文件和其他必要的资源文件。 3. **定位MyEclipse的dropins目录**:在你的电脑上找到MyEclipse的安装目录,然后进入"dropins"文件夹。这个文件夹...

    Eclipse(MyEclipse)离线插件安装工具

    Eclipse(MyEclipse)离线插件安装工具 C:\&gt;java -jar instPlug4MyEclipse.jar Use:java -jar instPlug4MyEclipse.jar PluginPath eclipsePath 如:java -jar instPlug4MyEclipse.jar D:/ADT-18.0.0 D:/myeclipse10 ...

    MyEclipse安装svn插件

    本文将详细介绍如何在MyEclipse中安装SVN插件。 首先,我们需要了解什么是SVN。SVN全称为Apache Subversion,是一个开源的版本控制系统,用于跟踪文件和目录的变更,使得多人协作开发时可以有效地管理代码版本。在...

    Myeclipse安装插件

    在软件开发过程中,为了提高工作效率,开发者往往会根据项目需求选择适合的开发工具,并通过安装插件来增强工具的功能。MyEclipse作为一款流行的Java集成开发环境(IDE),因其强大的功能和良好的用户界面,受到了...

    Myeclipse8.6安装svn插件

    本文将详细介绍如何在Myeclipse 8.6上安装SVN插件及其步骤。 首先,我们需要了解Myeclipse 8.6的基本信息。Myeclipse是一款由Genuitec公司开发的商业级Java集成开发环境,它基于Eclipse平台,提供了丰富的功能,...

    myeclipse10插件安装

    需要注意的是,不同的插件安装方法可能略有不同,有些可能需要通过MyEclipse的“软件更新”功能进行在线安装,或者使用.p2 repository进行安装。但本例中描述的是一种手动安装方式,这种方法对于不在MyEclipse官方...

    MyEclipse反编译插件和安装教程

    (2) 将jadeclipse插件net.sf.jadclipse_3.3.0.jar 拷贝到myeclipse安装目录\Genuitec\Common\plugins\目录下。 (3) 在myeclipse安装目录下的dropins中创建eclipse文件夹,然后在eclipse文件夹中分别创建...

    Myeclipse安装svn插件

    本篇文章将详细介绍如何在MyEclipse集成开发环境中安装SVN插件,以便更好地进行代码版本管理和协同开发。 首先,我们需要理解MyEclipse与SVN的关系。MyEclipse是一款功能强大的Java集成开发环境,它基于Eclipse平台...

    myeclipse安装svn插件教程

    在MyEclipse中安装插件,通常需要找到对应平台的插件包,例如`org.tigris.subversion.subclipse.feature_*.zip`和`org.tigris.subversion.subclipse.myeclipse_*.zip`。这些文件包含了Subclipse(一个流行的SVN插件...

    myeclipse svn插件及安装方法

    ### MyEclipse SVN插件及安装方法 #### 一、前言 在软件开发过程中,版本控制工具扮演着至关重要的角色。Subversion (SVN) 是一款非常流行的集中式版本控制系统,广泛应用于团队协作和代码管理。MyEclipse 作为一...

    MyEclipse相关插件安装方法

    安装MyEclipse插件的过程一般分为以下步骤: 1. **打开MyEclipse市场**:启动MyEclipse后,点击菜单栏的“Window” -&gt; “Eclipse Marketplace”,这将打开内置的市场客户端,你可以在这里找到并安装各种插件。 2. ...

    MyEclipse安装ArcGIS插件的源码

    本文将详细介绍如何在MyEclipse中安装ArcGIS插件的源码,帮助开发者实现GIS功能的集成。 首先,我们需要了解MyEclipse。MyEclipse是一款强大的、基于Eclipse的Java集成开发环境,提供了丰富的功能,包括代码编辑、...

    MyEclipse下Axis2插件安装笔记

    ### MyEclipse下Axis2插件安装步骤及注意事项 #### 一、下载MyEclipse Axis2插件 在安装MyEclipse下的Axis2插件之前,首先需要从官方网站下载所需的插件包。根据给定的部分内容,我们可以了解到具体的下载地址如下...

    Myeclipse安装spket插件

    Myeclipse中spket插件安装 压缩包带ext.jsb ext.jsb2 Myeclipse安装spket插件过程word文档 spket-1[1].6.18.jar破解版安装包

    MyEclipse安装与搭建

    "MyEclipse安装与搭建" MyEclipse 是一个功能强大且流行的集成开发环境(IDE),它提供了许多实用的功能和插件,帮助开发者更快速、更高效地开发、测试和部署应用程序。本文将详细介绍 MyEclipse 的安装和搭建过程...

    myeclipse上安装sae-eclipse插件

    在IT开发环境中,有时我们需要利用特定的工具来提高效率,比如在MyEclipse这样的集成开发环境中(IDE)安装相应的插件。本篇文章将详细介绍如何在MyEclipse上安装SAE(新浪云应用引擎)插件,这对于那些希望在新浪云...

Global site tag (gtag.js) - Google Analytics