`

MyEclipse7.5注册码生成和插件安装

阅读更多
一、MyEclipse 7.5 注册码生成器
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class MyEclipseGen {
private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to a $500,000 fine or up to five years imprisonment for a first offense. Think about it; pay for a license, avoid prosecution, and feel better about yourself.";

public String getSerial(String userId, String licenseNum) {
   java.util.Calendar cal = java.util.Calendar.getInstance();
   cal.add(1, 3);
   cal.add(6, -1);
   java.text.NumberFormat nf = new java.text.DecimalFormat("000");
   licenseNum = nf.format(Integer.valueOf(licenseNum));
   String verTime = new StringBuilder("-").append(
     new java.text.SimpleDateFormat("yyMMdd").format(cal.getTime()))
     .append("0").toString();
   String type = "YE3MP-";
   String need = new StringBuilder(userId.substring(0, 1)).append(type)
     .append("300").append(licenseNum).append(verTime).toString();
   String dx = new StringBuilder(need).append(LL).append(userId)
     .toString();
   int suf = this.decode(dx);
   String code = new StringBuilder(need).append(String.valueOf(suf))
     .toString();
   return this.change(code);
}

private int decode(String s) {
   int i;
   char[] ac;
   int j;
   int k;
   i = 0;
   ac = s.toCharArray();
   j = 0;
   k = ac.length;
   while (j < k) {
    i = (31 * i) + ac[j];
    j++;
   }
   return Math.abs(i);
}

private String change(String s) {
   byte[] abyte0;
   char[] ac;
   int i;
   int k;
   int j;
   abyte0 = s.getBytes();
   ac = new char[s.length()];
   i = 0;
   k = abyte0.length;
   while (i < k) {
    j = abyte0[i];
    if ((j >= 48) && (j <= 57)) {
     j = (((j - 48) + 5) % 10) + 48;
    } else if ((j >= 65) && (j <= 90)) {
     j = (((j - 65) + 13) % 26) + 65;
    } else if ((j >= 97) && (j <= 122)) {
     j = (((j - 97) + 13) % 26) + 97;
    }
    ac[i] = (char) j;
    i++;
   }
   return String.valueOf(ac);
}

public MyEclipseGen() {
   super();
}

public static void main(String[] args) {
   try {
    System.out.println("please input register name:");
    BufferedReader reader = new BufferedReader(new InputStreamReader(
      System.in));
    String userId = null;
    userId = reader.readLine();
    MyEclipseGen myeclipsegen = new MyEclipseGen();
    String res = myeclipsegen.getSerial(userId, "5");
    System.out.println("Serial:" + res);
    reader.readLine();
   } catch (IOException ex) {
   }
}
}



二、MyEclipse 7.5 插件配置代码生成
7.5的插件安装方法与之前很不同,拷到features和plugins目录下也无用。原来插件的配置信息全在MyEclipse目录\configuration\org.eclipse.equinox.simpleconfigurator\bundles.info
搜到代码生成方法。
1)插件的目录结构



2)插件我放到了MyEclipse目录下plugin下,方便管理。
3)插件配置info生成:pluginPath 是插件的绝对路径,运行后代码追加到bundles.info就行了。
import java.io.File;
import java.util.ArrayList;
import java.util.List;

/**
 * MyEclipse 7.5 插件配置代码生成器
 * 
 */

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 pluginPath = "D:\\devTools\\MyEclipse 7.5\\plugin\\ADT-0.9.6";
		new PluginConfigCreator().print(pluginPath);
	}
}

4)重启Myeclipse完成。
  • 大小: 23.1 KB
分享到:
评论

相关推荐

    MyEclipse7.5注册码

    通过了解MyEclipse 7.5 注册码的相关知识,我们可以更好地管理和使用这款强大的开发工具。无论是通过官方购买还是其他途径获得注册码,都应确保使用的合法性与安全性。合理利用注册码可以避免软件使用过程中的各种...

    MyEclipse7.5 注册码

    MyEclipse7.5 注册码

    myeclipse7.5注册码

    ### MyEclipse 7.5 注册码及软件激活指南 #### 一、MyEclipse 7.5 概述 MyEclipse 是一款非常流行的集成开发环境(Integrated Development Environment,IDE),它主要针对Java EE应用程序开发而设计。MyEclipse ...

    MyEclipse7.5注册码生成源文件

    MyEclipse7.5的subscription information计算工具。 使用方法: 在myeclipse中新建一个java项目,将该java文件导入后,运行它,控制台中输入一个你想用的用户名,然后就得到了结果。 该结果能够使用1000多天。

    MyEclipse 7.5 注册码

    根据提供的文件信息,本文将围绕"MyEclipse 7.5 注册码"这一主题进行深入探讨,包括MyEclipse的基本介绍、注册码的作用及其在MyEclipse 7.5版本中的应用等内容。 ### MyEclipse简介 MyEclipse是Eclipse的一个插件...

    myeclipse7.5的SVN插件安装

    这可以通过访问提供的链接(http://cid-9a55179c6db0af30.skydrive.live.com/self.aspx/.Public/Myeclipse7.5+SVN/myeclipse7.5-SVN.rar)来下载一个名为“myeclipse7.5-SVN.rar”的RAR压缩文件。下载完成后,需要...

    myeclipse7.5 注册码

    在探讨“MyEclipse 7.5 注册码”的过程中,我们不仅需要理解注册码本身的含义,还需要了解MyEclipse 7.5这款软件的特点及其在软件开发中的应用。此外,对于那些希望合法获取并使用该软件的人来说,了解如何正确地...

    MyEclipse_5.5.1GA和MyEclipse 7.5注册码(未过期)

    在探讨“MyEclipse_5.5.1GA和MyEclipse 7.5注册码(未过期)”这一主题时,我们不仅关注于提供的注册码本身,更深入地了解MyEclipse这款集成开发环境(IDE)的背景、功能以及在软件开发中的应用,将有助于我们全面理解...

    MyEclipse7.5 注册 破解代码

    MyEclipse7.5 注册 破解代码 使用方法: 运行-〉输入名-〉取得注册码。

    myeclipse 7.5 注册码

    通常,当你首次安装并启动MyEclipse时,系统会提示你输入订阅信息,其中包括产品名称、公司名和个人姓名等,这些信息与生成的注册码相对应。描述中的“随便输入一个名字,得到注册码”可能是指使用某种注册码生成...

    myeclipse 7.5 注册码生成

    生成myeclipse注册码,可以不断网注册

    MyEclipse 7.5正式版汉化插件

    在安装和使用过程中遇到问题,可以寻求MyEclipse用户社区的帮助,他们通常会分享解决办法和经验,同时也能了解到更多关于汉化插件的最新信息和更新。 6. **其他辅助工具**: 虽然汉化插件解决了语言障碍,但...

    myeclipse 7.5注册码

    虽然这段代码能够生成一个看似合法的 MyEclipse 7.5 注册码,但需要注意的是,这样的行为违反了版权法和软件许可协议。建议用户遵循法律和道德规范,购买正版许可证支持开发者的工作。同时,这段代码也可以作为学习 ...

    MyEclipse7.5_SVN插件安装详细步骤(带图)

    在本文中,我们将详细探讨如何在MyEclipse 7.5中安装SVN插件,以便于进行版本控制操作。SVN(Subversion)是一种广泛使用的版本控制系统,它可以帮助开发者管理代码版本,协同开发,回溯历史修改。以下就是安装过程...

    MyEclipse7.5安装SVN

    在提供的链接中下载myeclipse7.5-SVN.rar压缩文件,该文件包含安装所需的所有资源。 #### 解压安装包 将下载的myeclipse7.5-SVN.rar解压到一个临时目录中。通常,压缩包内会包含以下三个关键部分: - **plugins** ...

    myeclipse7.5

    myeclipse7.5,能用到年呀。我注册了,真的,呵呵

    MyEclipse7.5注册码生产源代码!

    MyEclipse7.5注册码生产源代码!

Global site tag (gtag.js) - Google Analytics