`

MyEclipse6.0 生成注册码

 
阅读更多

发现了一个可以由用户输入用户名,得出注册码的东东,觉得很好,转于此处与大家分享。

(代码来源于别一个技术论坛转贴)

 

package com;
import java.io.*;
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, "20");
            System.out.println("Serial:" + res);
            reader.readLine();
        } catch (IOException ex) {
        }
    }
}

  

 

分享到:
评论

相关推荐

    MyEclipse6.0生成注册码

    MyEclipse6.0生成注册码

    myeclipse6.0生成注册码

    myeclipse6.0生成注册码 myeclipse6.0生成注册码

    MYEclipse 6.0的注册码生成器

    然而,"MYEclipse 6.0的注册码生成器"涉及到的是软件授权和版权问题。MYEclipse作为一个商业软件,其使用需要购买合法的许可证。注册码是软件开发商用来验证用户是否拥有合法使用权的一种方式。使用注册码生成器,...

    myeclipse6.0注册码

    - 这个类是整个程序的核心,包含了生成注册码的主要逻辑。 ##### 关键方法解析 1. **`getSerial`方法**:此方法接收用户的ID和许可证号作为参数,并返回生成的注册码。 - 首先获取当前日期并计算出有效期结束...

    myeclipse6.0&&myeclipse7.0注册码生成程序

    myeclipse6.0&&myeclipse7.0注册码生成程序myeclipse6.0&&myeclipse7.0注册码生成程序myeclipse6.0&&myeclipse7.0注册码生成程序

    myeclipse 6.0注册码生成

    运行内部java代码,用以生成myeclipse6.0注册码

    MyEclipse6.0 注册码

    ### MyEclipse 6.0 注册码详解 #### 一、MyEclipse 6.0 软件概述 MyEclipse 是一款强大的集成开发环境(Integrated Development Environment,简称 IDE),它基于 Eclipse 平台并为其添加了功能强大的企业级应用...

    MyEclipse6.0注册码生成器

    MyEclipse6.0注册码生成器

    MyEclipse 6.0 注册码生成程序

    - **main()**:这是程序的入口点,它提示用户输入注册名,并调用`getSerial()`方法生成注册码。 ##### 2. `getSerial()`方法解析 `getSerial()`方法是整个程序的核心逻辑所在,其具体步骤如下: 1. 获取当前时间...

    Myeclipse6.0注册码自动生成类

    Myeclipse6.0注册码自动生成类,可以根据自己输入的用户名,自动生成注册码,太牛啦

    MyEclipse6.0 注册码生成类

    只需要运行这个类、输入用户名 敲回车就行、 我生成的时候输入的是 conjs、已经验证通过、有效期到2015年十一月份

    myeclipse6.0以上注册程序

    生成注册码的过程比较复杂,主要包括以下几个步骤: - **日期计算**:首先,程序会基于当前日期计算出一个未来的日期,用于设置许可证的有效期。 - **字符串构造**:然后,根据用户的注册名构造一个特定格式的字符...

    MyEclipse6.0.x注册码生成器

    MyEclipse注册码生成器,任意输入数字或者字母,简单易用随时有效!

    myeclipse6.0注册码生成器

    NULL 博文链接:https://zhaoshijie.iteye.com/blog/1174669

    MyEclipse6.0注册码生成机 源码程序

    NULL 博文链接:https://sunshyfangtian.iteye.com/blog/635495

    myeclipse6.0注册机.rar

    此工具可以生成 Eclipse、MyEclipse 等工具的注册码。

    Myeclipse 6.0注册机

    用于生成Myeclipse6.0的注册吗。 使用方法: 1.pc机上必须已经安装了jre或者是jdk 2.解压后直接运行.bat文件,输入任意账户,回车就得到注册码

    MyEclipse_6_开发实战教程.doc

    3. 编写代码:在生成的HelloWorld类中,实现main方法,输出"Hello MyEclipse"。 4. 运行:点击Run按钮或使用快捷键运行项目,查看控制台输出。 三、MySQL数据库的配置与JDBC连接 1. 安装MySQL:教程中提供了MySQL...

Global site tag (gtag.js) - Google Analytics