MyEclipse10 破解与汉化的问题解决

时间:2023-01-19 09:45:11

附:MyEclipse10汉化破解下载地址:http://download.csdn.net/download/lch_cn/4764738

 

MyEclipse10 破解与汉化的问题解决

一,破解问题:

有时会出现run.bat运行不了的情况,可以修改run.bat文件 将“java -jar *.jar”改为“java -jar cracker,jar”,再运行就ok了。(你可以看到run.bat所在的目录就一个叫“cracker,jar”的jar文件,如果不叫这个名字可以根据实际名字修改就行了)

二,汉化问题:

MyEclipse10的汉化有时会在运行CreatePluginsConfig文件时报错:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2
 at CreatePluginsConfig.print(CreatePluginsConfig.java:47)
 at CreatePluginsConfig.main(CreatePluginsConfig.java:90)

替换下面的代码再运行就ok了,我自己debug的!

 

import java.io.File;   
import java.util.ArrayList;   
import java.util.List;   
  
/**  
 * MyEclipse 8.x安装插件代码生成器  
 * @author Administrator  
 *  
 */  
public class CreatePluginsConfig {   
    private String path;   
  
    public CreatePluginsConfig(String path) {   
        this.path = path;   
    }   
  
    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("_");  
                if(filenames.length == 3){
                	 String filename1 = filenames[0]+"_"+filenames[1];
                     String filename2 = filenames[2].substring(0, filenames[2].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) {   
          
        new CreatePluginsConfig("D:\\MyEclipse\\Common\\plugins").print(); //汉化包插件路径   
	//友情提示:上面C:\\myEclipse\\language\\plugins是你的myEclipse安装的路径
      
    }   
}