MyEclipse 8.0(09-10-1)汉化插件使用方法

1.下载插件(如果有就不用下了,废话啊) 地址:http://hi-rain.com/index.php/241

2.把下载下来的文件放到你MyEclipse的目录下,没有严格的要求,一般放在根目录下就行 如图:

   MyEclipse 8.0(09-10-1)汉化插件使用方法_第1张图片

 

language文件夹的结构 如图

  image 

3.打开MyEclipse,我的是刚刚汉化完成的,所以只中文的。新建项目---java---把下面的代码粘贴过去,

   形成如下结构:

MyEclipse 8.0(09-10-1)汉化插件使用方法_第2张图片

 

  文件名 CreatePluginsConfig.java 

   代码:

import java.io.File;
import java.util.ArrayList;
import java.util.List;
public class CreatePluginsConfig {

    public CreatePluginsConfig() {
    }

    public void print(String path) {
        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) {
                    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 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) {
        String plugin = "D://MyEclipse 8.0//language//plugins";
        new CreatePluginsConfig().print(plugin);
    }
}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

注意一点修改  language的路径

     String plugin = "D://MyEclipse 8.0//language//plugins";

改为language文件的绝对路径

然后运行本程序在控制台出现如下内容:代码量很大 我就不一一列出了吗如没有没有出现控制台 按alt+shift+q,c 调出控制台

MyEclipse 8.0(09-10-1)汉化插件使用方法_第3张图片

 

复制控制台里面的文本追加到 /configuration/org.eclipse.equinox.simpleconfigurator/bundles.info  的最后面 

用记事本打开bundles.info就行。

关闭英文版的myeclipse。

然后打开CMD窗口  进入myeclipse.exe的目录运行 如下代码  myeclipse.exe -clean

image

稍等一会就可以看到中文版的myeclipse拉。

给大家发一张汉化后的效果图:

MyEclipse 8.0(09-10-1)汉化插件使用方法_第4张图片

 

如果有什么疑问就给我留言啊~~~一起研究。

你可能感兴趣的:(MyEclipse 8.0(09-10-1)汉化插件使用方法)