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.”;
  此段代碼常量不可變更 否則註冊碼無效
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章