打开MyEclipse新建一个Javaproject,然后新建类,粘贴例如以下代码,就可以生成MyEclipse的注冊码

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-6.5注冊码生成器源代码的更多相关文章

  1. MyEclipse 8.0注冊码+原版下载_Java开发软件

    MyEclipse是一个十分优秀的用于开发Java, J2EE的Eclipse插件集合,MyEclipse的功能很强大,支持也十分广泛,尤其是对各种开元产品的支持十分不错.MyEclipse眼下支持J ...

  2. MyEclipse各种版本号注冊码

    一:MyEclipse_6.0.1GA_E3.3.1_FullStackInstaller注冊码 Subscriber:javp Subscription Code:wLR7ZL-655551-685 ...

  3. 基于Servlet、JSP、JDBC、MySQL的一个简单的用户注冊模块(附完整源代码)

    近期看老罗视频,做了一个简单的用户注冊系统.用户通过网页(JSP)输入用户名.真名和password,Servlet接收后通过JDBC将信息保存到MySQL中.尽管是个简单的不能再简单的东西,但麻雀虽 ...

  4. 协议的注冊与维护——ndpi源代码分析

    在前面的文章中,我们对ndpi中的example做了源代码分析.这一次我们将尽可能深入的了解ndpi内部的结构和运作.我们将带着以下三个目的(问题)去阅读ndpi的源代码. 1.ndpi内部是怎么样注 ...

  5. 【spring源代码分析】--Bean的解析与注冊

    接着上一节继续分析,DefaultBeanDefinitionDocumentReader的parseBeanDefinitions方法: protected void parseBeanDefini ...

  6. 2014年到期的myeclipse5.5.1注冊码

    假设点击Myeclipse的载入项目到server的图标没有反应,这就是MyEclipse过期了,下面是还能用一年的注冊码: subscriber: axin  Serial:nLR8ZC-85557 ...

  7. myeclipse6.0下载及注冊码

    myeclipse6.0 下载地址.官方下载地址: http://www.myeclipseide.com/module-htmlpages-display-pid-4.html 本地快速下载地址: ...

  8. 从注冊流程 分析怎样安全退出多个Activity 多种方式(附DEMO)

    前言 因为一个同学问到我怎样依照一个流程走好之后回到首页.我曾经看到过4个解决方式,后来发现有做个记录和总结的必要,就写了这篇博文. (之前看小强也写过一篇,这里通过自身的分析完整的总结一下下面6种方 ...

  9. Myeclipse7.5 下载 安装 注冊 注冊码 100%成功

    myeclipse7.5启动画面 1.下载Myeclipse官方原版 官方原版:或者 http://downloads.myeclipseide.com/downloads/products/ewor ...

随机推荐

  1. IF的使用

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...

  2. Swing布局管理器

    在Swing中使用的所有布局管理器都可以实现LayoutManager接口.Swing中有五种常见的布局管理器分别为FlowLayout.BorderLayout.GridLayout.CardLay ...

  3. 如何设置ssh安全只允许用户从指定的IP登陆

    原文链接: 如何设置ssh安全只允许用户从指定的IP登陆 由于开发上传文件需要  在服务器上开启  允许用户名和密码ssh登录.这样不太安全.百度后参考文章现在ssh用户名和密码登录的ip. 登录服务 ...

  4. USACO Palindromic Squares 【STL__string_的应用】

    这里有个讲解 string 用法非常详细的博文:https://www.byvoid.com/zhs/blog/cpp-string 题目意思很简单啦,就是找回文 使用string可以高速A过 Sou ...

  5. JavaEE Tutorials (3) - 企业bean

    3.1什么是企业bean383.1.1企业bean的好处393.1.2何时使用企业bean393.1.3企业bean类型393.2什么是会话bean393.2.1会话bean类型403.2.2何时使用 ...

  6. (十六)JQuery Ready和angularJS controller的运行顺序问题

    项目中使用了JQuery和AngularJS框架,近期定位一个问题,原因就是JQuery Ready写在了angularJS controller之前,导致JQuery选择器无法选中须要的元素(由于a ...

  7. Gas Station|leetcode 贪心

    贪心:尽量将gas[i]-cost[i]>0的放在前面,gas[i]-cost[i]<0的放在后面.(路程的前面有汽油剩下,耗汽油的放在路程的后面). 能否全程通过的 条件 是:sum(g ...

  8. BZOJ 4145: [AMPPZ2014]The Prices( 状压dp + 01背包 )

    我自己只能想出O( n*3^m )的做法....肯定会T O( nm*2^m )做法: dp( x, s ) 表示考虑了前 x 个商店, 已买的东西的集合为s. 考虑转移 : 先假设我们到第x个商店去 ...

  9. ant_0105

    在projectA中执行projectB的构件文件.projectA的构件文件内容如下 <?xml version="1.0"?> <!-- 在projectA中 ...

  10. Oracle时间戳

    查询某一具体时间某张表的数据,可以用时间戳进行查询. 例如: SELECT * FROM sac14 AS OF TIMESTAMP to_date('201508310930','yyyymmddh ...