MyEclipse8.5 代码破解

本文介绍了一个简单的Java程序,用于生成MyEclipse软件的注册序列号。通过输入用户名,程序将根据特定算法生成相应的序列号,用户可以在MyEclipse的订阅设置中使用该序列号进行激活。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1、建立一个任意名称的Java Project

2、在该工程中建立一个名文MyEclipseGen的Java文件(MyEclipseGen.java)

3、运行下面的代码,会在控制台出现" please input register name:",输入任意一个名字,回车后生成序列号

4、点击 MyEclipse菜单中Window→Preferences→MyEclipse→Subscription ,在右侧点击“Enter Subscription”

5、在弹出框中Subscriber中输入第3步的名字,在Subscription Code中输入第3步生成的序列号


[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. import java.io.BufferedReader;  
  2. import java.io.IOException;  
  3. import java.io.InputStreamReader;  
  4. public class MyEclipseGen {  
  5. 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.";  
  6. public String getSerial(String userId, String licenseNum) {  
  7.    java.util.Calendar cal = java.util.Calendar.getInstance();  
  8.    cal.add(13);  
  9.    cal.add(6, -1);  
  10.    java.text.NumberFormat nf = new java.text.DecimalFormat("000");  
  11.    licenseNum = nf.format(Integer.valueOf(licenseNum));  
  12.    String verTime = new StringBuilder("-").append(  
  13.      new java.text.SimpleDateFormat("yyMMdd").format(cal.getTime()))  
  14.      .append("0").toString();  
  15.    String type = "YE3MP-";  
  16.    String need = new StringBuilder(userId.substring(01)).append(type)  
  17.      .append("300").append(licenseNum).append(verTime).toString();  
  18.    String dx = new StringBuilder(need).append(LL).append(userId)  
  19.      .toString();  
  20.    int suf = this.decode(dx);  
  21.    String code = new StringBuilder(need).append(String.valueOf(suf))  
  22.      .toString();  
  23.    return this.change(code);  
  24. }  
  25. private int decode(String s) {  
  26.    int i;  
  27.    char[] ac;  
  28.    int j;  
  29.    int k;  
  30.    i = 0;  
  31.    ac = s.toCharArray();  
  32.    j = 0;  
  33.    k = ac.length;  
  34.    while (j < k) {  
  35.     i = (31 * i) + ac[j];  
  36.     j++;  
  37.    }  
  38.    return Math.abs(i);  
  39. }  
  40. private String change(String s) {  
  41.    byte[] abyte0;  
  42.    char[] ac;  
  43.    int i;  
  44.    int k;  
  45.    int j;  
  46.    abyte0 = s.getBytes();  
  47.    ac = new char[s.length()];  
  48.    i = 0;  
  49.    k = abyte0.length;  
  50.    while (i < k) {  
  51.     j = abyte0[i];  
  52.     if ((j >= 48) && (j <= 57)) {  
  53.      j = (((j - 48) + 5) % 10) + 48;  
  54.     } else if ((j >= 65) && (j <= 90)) {  
  55.      j = (((j - 65) + 13) % 26) + 65;  
  56.     } else if ((j >= 97) && (j <= 122)) {  
  57.      j = (((j - 97) + 13) % 26) + 97;  
  58.     }  
  59.     ac[i] = (char) j;  
  60.     i++;  
  61.    }  
  62.    return String.valueOf(ac);  
  63. }  
  64. public MyEclipseGen() {  
  65.    super();  
  66. }  
  67. public static void main(String[] args) {  
  68.    try {  
  69.     System.out.println("please input register name:");  
  70.     BufferedReader reader = new BufferedReader(new InputStreamReader(  
  71.       System.in));  
  72.     String userId = null;  
  73.     userId = reader.readLine();  
  74.     MyEclipseGen myeclipsegen = new MyEclipseGen();  
  75.     String res = myeclipsegen.getSerial(userId, "5");  
  76.     System.out.println("Serial:" + res);  
  77.     reader.readLine();  
  78.    } catch (IOException ex) {  
  79.    }  
  80. }  
  81. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值