MyEclipse注册码及序列号生成(Myeclipse7.0 Myeclipse6.5)

http://bbs.shendu.com/article-2361-1.html
摘要: 好多朋友在找myeclipse6.5和myeclipse7.0的注册码,本文收集了一些可用的myeclipse6.5注册码和myeclipse7.0注册码,并教大家生成myeclipse序列号的办法。myeclipse6.5注册号sn(注册时要断网)Subscriber:QQ24785490SubscriptionCode:DLR8ZC-
MyEclipse注册码及序列号生成(Myeclipse7.0 Myeclipse6.5)
  好多朋友在找myeclipse6.5和myeclipse7.0的注册码,本文收集了一些可用的myeclipse6.5注册码和myeclipse7.0注册码,并教大家生成myeclipse序列号的办法。
   myeclipse 6.5 注册号 sn(注册时要断网)
  Subscriber:QQ24785490
  Subscription Code:DLR8ZC-855551-65657857678050018
  Subscriber: administrator
  Subscription Code: nLR7ZL-655342-54657656405281154
  id:ads
  key:nLR8ZC-855550-6651645066927093
  Subscriber: www.1cn.biz
  Subscription Code: jLR8ZC-655444-65526656052107345
  Subscriber:QQ24785490
  Subscription Code:DLR8ZC-855551-65657857678050018
 
   MyEclipse 7.0  注册码
 
  Subscriber: www.1cn.biz
  Subscription Code: jLR8ZC-855550-6756755080661717
  Subscriber: www.1cn.biz
  Subscription Code: jLR8ZC-655444-65526656052107345
  MyEclipse 7.0 M1注册码
  Name: flowbyte.cn
  Serial: sLR8ZC-855575-66525457680638618
  MyEclipse 7.0 M1注册码
  Name: niuren
  Serial:aLR8ZC-855575-6652545851831340
 
   MyEclipse7.0 注册码序列号生成
 
  1、建立java Project,任意取个名字就行。
  2、建立一个名字为MyEclipseGen的类文件,内容见下面。
  3、运行该代码,在控制台中会出现:
  please input register name:
  ×××××(你的name)
  即生成序列号:
  4、进入myeclipse,输入Subscriber和Subscription code即可。
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;

public class MyeclipseGen {
public static final void main(String[] args) {
 String id = "dw008"; // 可更给为您的名字
 String num = "999";// 许可证数量
 System.out.println(getSerial(id, "100", num, false));
}
public static String getSerial(String userId, String version,
  String licenseNum, boolean selected) {
 Calendar cal = Calendar.getInstance();
 cal.add(1, 3);
 cal.add(6, -1);
 NumberFormat nf = new 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 verTime = selected ? (new StringBuffer("-")).append(
   (new SimpleDateFormat("yyMMdd")).format(cal.getTime())).append(
   "0").toString() : "-1512310";*/
 
 String type = "YE3MB-";
 String need = (new StringBuffer(String.valueOf(userId.substring(0, 1))))
   .append(type).append(version).append(licenseNum)
   .append(verTime).toString();
 String dx = (new StringBuffer(String.valueOf(need)))
   .append(
     "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.")
   .append(userId).toString();
 int suf = decode(dx);
 String code = (new StringBuffer(String.valueOf(need))).append(
   String.valueOf(suf)).toString();
 return change(code);
}
private 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);
}
private 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[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;
 }
 return String.valueOf(ac);
}
}
 
注: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.”;
  此段代码常量不可变更 否则注册码无效

你可能感兴趣的:(序列号,注册码)