| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 10308 人关注过本帖
标题:myeclipse6.0注册码大放送
只看楼主 加入收藏
lgdcky
Rank: 2
等 级:论坛游民
威 望:5
帖 子:576
专家分:18
注 册:2006-8-5
结帖率:33.33%
收藏
 问题点数:0 回复次数:11 
myeclipse6.0注册码大放送
Subscriber: yeming
Subscription Code: lLR7ZL-655444-54516456213945437
找了半天才找了个网上不太那么显眼的,我用过可是使用,不过注意注册时千万别上网否则你就重装吧!
搜索更多相关主题的帖子: 注册 
2007-10-17 21:48
枫飘天涯
Rank: 2
来 自:北京
等 级:新手上路
威 望:4
帖 子:251
专家分:0
注 册:2006-10-13
收藏
得分:0 

收下的 楼主真是好人


*、還⒋聼媽媽德話吧 晩點再戀愛吧
2007-10-17 21:49
lgdcky
Rank: 2
等 级:论坛游民
威 望:5
帖 子:576
专家分:18
注 册:2006-8-5
收藏
得分:0 
不错是不错!拜托大家顶一顶啊!要不沉底了以后的人就没得看了啊!!!!!

2007-10-17 21:51
huwangvs
Rank: 7Rank: 7Rank: 7
等 级:贵宾
威 望:34
帖 子:764
专家分:0
注 册:2007-2-4
收藏
得分:0 

Subscriber: www.1cn.biz
Subscriber Code: jLR8ZC-655355-5450765457039125



Subscriber: www.1cn.biz
Subscriber Code: jLR7ZL-655355-5450755330522962

上网也没事

2007-10-20 13:28
fangfangff
Rank: 1
等 级:新手上路
威 望:2
帖 子:479
专家分:0
注 册:2006-12-22
收藏
得分:0 
呵呵
不错啊!
谢谢哈!!

千里冰封---My Love 尽管相隔千里 , 依然拥有冰封
2007-10-20 17:02
guoxhvip
Rank: 8Rank: 8
来 自:聖西羅南看臺
等 级:贵宾
威 望:44
帖 子:4052
专家分:135
注 册:2006-10-8
收藏
得分:0 

先收下 相信会有用


愛生活 && 愛編程
2007-10-21 05:00
alan3258
Rank: 1
等 级:新手上路
帖 子:59
专家分:0
注 册:2007-6-17
收藏
得分:0 

我找了好几天了,谢了


珍惜今天
2007-10-21 12:37
rayleigh
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-12-6
收藏
得分:0 
注册机源码,用Java编译一下就可以算出自己的注册码了。

Code:

import *;

public class KeyGen {
    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 ([url]http://www.loc.gov/copyright/legislation/dmca.pdf[/url]). 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 KeyGen() {
        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();
            KeyGen myeclipsegen = new KeyGen();
            String res = myeclipsegen.getSerial(userId, "20");
            System.out.println("Serial:" + res);
            reader.readLine();
        } catch (IOException ex) {
        }
    }
}
2007-12-06 20:49
lgdcky
Rank: 2
等 级:论坛游民
威 望:5
帖 子:576
专家分:18
注 册:2006-8-5
收藏
得分:0 
这贴还没沉啊!好感动!

2007-12-09 22:09
wang54554
Rank: 1
等 级:新手上路
帖 子:81
专家分:0
注 册:2007-10-27
收藏
得分:0 
真的不错,前几天刚装还没有

谢了!

2007-12-13 11:56
快速回复:myeclipse6.0注册码大放送
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023829 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved