免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1626 | 回复: 0
打印 上一主题 下一主题

MyEclipse_6.0GA_E3.3_FullStackInstaller 注册码生成程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-05-27 09:41 |只看该作者 |倒序浏览

//这个是生成注册码的源代码
//package rm.babaio.com;
public class RegisterMyeclipse {
/**
  * @param args
  * @modified by: keer.wei
  * @email keer.wei@gmail.com
  * @website http://www.webfans.org/
  * @msn:keer.wei@gmail.com
  */
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) {
   // TODO Auto-generated method stub
   System.out.println("input Subscriber::");
   String userId = null;
   int pos=0;
   int b = 0;
   byte buf[]=new byte[1024];
   while(true){
     try{
       b = System.in.read();
     }catch(Exception e){
       System.out.println(e.toString());
     }
     if(b=='\n'){
       break;
     }else{
       userId = new String(buf,0,pos);
       buf[pos++]=(byte)b;
     }
   }
   System.out.println("Subscriber:" + userId);
   String licStr = "YE3MP-100000-0912310";
   String need = userId.substring(0,1) + licStr;
   String dx = need + L + userId;
   int suf = decode(dx);
   String code = need + suf;
   System.out.println("Subscription Code:" + change(code));
   System.out.println("if you have any question please contact me at keer.wei@gmail.com or http://www.webfans.org/");
}
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;
     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 = (char) j;
   }
   return String.valueOf(ac);
}
}

MyEclipse_6.0GA_E3.3_FullStackInstaller 注册码生成程序



本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/7893/showart_707672.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP