`
isiqi
  • 浏览: 16484620 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

MyEclipse4.0 、4.1、4.9、5.1 注册机代码

阅读更多

有效期至209912310

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main{
private static final String L = "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 static void main(String[] args) {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String userId="",version="",need="";

System.out.print("please input the username:");
try{
userId=br.readLine();
System.out.println();
}catch(Exception e){
}

System.out.println("1 - MyEclipse4.0.0 GA");
System.out.println("2 - MyEclipse4.1 GA");
System.out.println("3 - MyEclipse4.9.1");
System.out.println("4 - MyEclipse5.1.0 GA");
System.out.println();
System.out.print("please choose the version of MyEclipse:");

try{
version=br.readLine();
int v = Integer.parseInt(version);
switch(v){
case 1:need = userId.substring(0,1) + "YE3MP-400-01-9912310";break;
case 2:need = userId.substring(0,1) + "YE3MP-401-00-9912310";break;
case 3:need = userId.substring(0,1) + "YE3MP-491-01-9912310";break;
case 4:need = userId.substring(0,1) + "YE3MP-501-00-9912310";break;
}
}catch(Exception e){
}

// 其中491(4.9.1)/400(4.0)/401(4.1)/501(5.1.0),()内为版本号,9912310代表注册码过期时间2099/12/31
// MyEclipse4.0.0 GA
// String need = userId.substring(0,1) + "YE3MP-400-01-9912310";
// MyEclipse4.1 GA
// String need = userId.substring(0,1) + "YE3MP-401-00-9912310";
// MyEclipse4.9.1
// String need = userId.substring(0,1) + "YE3MP-491-01-9912310";
// MyEclipse5.1.0 GA
// String need = userId.substring(0,1) + "YE3MP-501-00-9912310";
String dx = need + L + userId;
int suf = decode(dx);
// System.out.println("SUF:"+suf);
String code = need + suf;
System.out.println(" The result is:");
System.out.println(change(code));
System.out.println(" The time up to 2099/12/31");
}

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

static String change(String s){
byte abyte0[] = s.getBytes();
char ac[] = new char[s.length()];
int i = 0;
for (int k = abyte0.length; i < k; i++){
int 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;
}
return String.valueOf(ac);
}
}

分享到:
评论

相关推荐

    MyEclipse4.1到5.9通用注册码

    根据题目中的描述,此次提供的注册码适用于多个版本的MyEclipse,具体包括:MyEclipse4.0、MyEclipse4.1、MyEclipse4.9、MyEclipse5.1。这四个版本分别代表了MyEclipse在不同时期的发展阶段,下面简要介绍这些版本的...

    毕业设计代码包(代码)【煤炭进销存管理系统——JAVA】

    (1)开发平台及工具:JDK1.5,Eclipse3.2+MyEclipse5.5 (2)WEB服务器:Tomcat5.0 (3)操作系统:Windows XP (4)数据库:My SQL (5)开发技术:JavaEE,JSP (6)开源框架: Struts,Hibernate 3、目录: 第一...

    毕业设计: Java项目之基于ssm基于ssm的人才招聘网站+jsp (源码 + 数据库 + 论文)

    2.1.1Myeclipse环境介绍 8 2.1.2Java语言介绍 8 2.1.3Mysql数据库介绍 9 2.2系统需求分析 9 2.2.1系统性能要求分析 9 2.3系统可行性分析 10 2.3.1技术可行性 10 2.3.2法律可行性 10 2.3.3操作可行性 11 2.4系统流程...

    myeclipse教程

    0.环境说明...............................................................................................................................................................7 1.Eclipse简介...................

    JAVA项目开发全程实录(含电子书和所有源代码)

    7.12 使用MyEclipse生成Hibernate 实体类和映射文件 347 7.13 本章总结 351 第8章 企业门户网站(JSP+JavaBean +SQL Server 2000实现) 352 教学视频:1小时9分 8.1 开发背景 353 8.2 需求分析 353 8.3 系统设计 353...

    JSP动态网站开发基础教程与实验指导(从基础到应用)光盘

    《JSP动态网站开发基础教程与实验指导》附有配套光盘,提供了书中实例的源代码和视频教学文件。 《JSP动态网站开发基础教程与实验指导》可以作为JSP职业培训教材和各级院校JSP授课培训教程,也适合作为JSP自学资料和...

    J2EEWEB开发教材

    - **3.11.2 Eclipse + MyEclipse 开发 helloapp 的 Web 应用**:介绍如何使用 Eclipse IDE 构建简单的 Web 应用。 **3.12 手工部署开发式目录结构** - 如何手动配置 Tomcat 来部署 Web 应用。 **3.13 利用 Tomcat ...

    基于Java Web的新闻发布系统设计与实现.docx

    ##### 5.1 测试的重要性及目的 系统测试是确保系统质量的关键环节,主要目的是验证系统的功能是否符合需求规格说明书的要求,同时发现并修复存在的缺陷。 ##### 5.2 测试的主要内容 - **功能测试**:验证系统的...

Global site tag (gtag.js) - Google Analytics