首先介绍下,这款MyEclipse7.0 M1已经内置了Eclipse3.4,所以无需再去下载。

1.下载地址:
http://downloads.myeclipseide.com/downloads/products/eworkbench/7.0M1/MyEclipse_7.0M1_E3.4.0_Installer.exe

2.编写如下代码,生成自己的MyEclipse7.0用户名和注册码

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class zhuce {
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 zhuce() {
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();
zhuce myeclipsegen = new zhuce();
String res = myeclipsegen.getSerial(userId, "5");
System.out.println("Serial:" + res);
reader.readLine();
}
catch (IOException ex) {
}
}
}

运行 java工程的 zhuce.java类

please input register name:
zhaoxiaofeng
Serial:mLR8ZC-855550-6167515134716549
Subscriber: zhaoxiaofeng
Product ID: E3MP (MyEclipse Professional Subscription)
License version: 3.0
Full Maintenance Included
Subscription expiration date (YYYYMMDD): 20161206
Number of licenses: 5

最新文章

  1. JMS
  2. python opencv 实现Reinhard颜色迁移算法
  3. 工作随笔——UIButton的EdgeInsets + Swift中的正则表达式;
  4. C#开发Windows服务
  5. crawler: 常用的一些工具
  6. uva 1368 DNA Consensus String
  7. if与while相互嵌套,菱形*的实现.py
  8. java7 - JDK
  9. spring boot rest例子
  10. element 多个文件上传多次http请求解决方法
  11. eclipse启动tomcat访问http://localhost:8080 报404错误
  12. AI创业的技术方案选择
  13. Burpsuite常用模块详解以及渗透测试上的运用
  14. 第14月第17天 automaticallyAdjustsScrollViewInsets contentInsetAdjustmentBehavior
  15. Struts2中.properties文件放置路径(classpath)
  16. 20180322 对DataTable里面的数据进行去重
  17. C语言入门:03.关键字、标识符、注释
  18. chrome浏览器直接编辑源码功能的开通办法 - Chrome Workspace
  19. python 异常类型----后期需理解调整
  20. Python 字典 pop() 方法

热门文章

  1. PKI标准、CA采取的规范、X509、PKCS
  2. JQuery中查找父元素,子元素,追加元素,插入元素和删除元素 及其他常用方法
  3. JAVA学习笔记——(二)
  4. JAVA学习笔记——(一)
  5. php分页问题
  6. 从零开始Spring项目
  7. CSP 201703-4 地铁修建 最小生成树+并查集
  8. udp通信的消息处理方案
  9. 【异步编程】Part3:取消异步操作
  10. vue父子组件路由传参的方式