myeclipse獲取註冊碼
package com;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
public class MyEclipseKeyGen {
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 type) {
NumberFormat nf = new DecimalFormat("000");
Calendar cal = Calendar.getInstance();
cal.add(Calendar.YEAR, 3);
cal.add(Calendar.DAY_OF_YEAR, -1);
String licenseNum = nf.format((int) (Math.random() * 1000));
String expTime = new StringBuilder("-").append(
new SimpleDateFormat("yyMMdd").format(cal.getTime())).append(
"0").toString();
String need = new StringBuilder(userId.substring(0, 1)).append("Y")
.append(type).append("-100").append(licenseNum).append(expTime)
.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 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();
if(userId == null || "".equals(userId)){
System.out.println("name is null");
System.exit(0);
}
MyEclipseKeyGen myeclipsegen = new MyEclipseKeyGen();
String res = myeclipsegen.getSerial(userId, "E3MS");
System.out.println("Serial:" + res);
reader.readLine();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
相關文章
- phpstrom 註冊碼獲取PHP
- myeclipse6 0註冊碼收藏Eclipse
- vbs指令碼獲取Am註冊路徑資訊指令碼
- 註冊中心 Eureka 原始碼解析 —— 應用例項註冊發現(六)之全量獲取原始碼
- SpringMVC原始碼之Handler註冊、獲取以及請求controller中方法SpringMVC原始碼Controller
- PhpStorm註冊碼PHPORM
- VMware註冊碼
- day79:luffy:註冊之對手機號的驗證&實現基本的註冊功能邏輯&點選獲取驗證碼&redisRedis
- spring cloud系列教程第八篇-修改服務名稱及獲取註冊中心註冊者的資訊SpringCloud
- ShadowDefender 註冊碼 分析
- Viscosity for Mac 註冊碼:Mac
- Navicat for MySQL註冊碼MySql
- C# 從登錄檔判斷指定ocx控制元件是否已註冊 以及獲取它的註冊路徑C#控制元件
- 註冊中心 Eureka 原始碼解析 —— 應用例項註冊發現(一)之註冊原始碼
- wing ftp server 註冊碼FTPServer
- PLSQL Developer 12 註冊碼SQLDeveloper
- sublime text for Mac註冊啟用 sublime text4註冊碼Mac
- 今天好多人 phpstrom 編譯器註冊碼失效了,最新可用註冊碼PHP編譯
- JProfiler v14.0.0註冊碼
- datagrip 2021.1啟用註冊碼
- IntelliJ IDEA 註冊碼啟用IntelliJIdea
- Navicat for MySQL 11註冊碼\啟用碼MySql
- nacos註冊中心原始碼流程分析原始碼
- ReactNative開發 WebStorm IDEA 註冊碼ReactWebORMIdea
- 獲取AOSP原始碼原始碼
- 動態註冊和靜態註冊
- 簡單的Bindservice服務獲取隨機數,需要在清單檔案中註冊service隨機
- 註冊中心 Eureka 原始碼解析 —— 應用例項註冊發現(三)之下線原始碼
- 為什麼獲取不到@Value註解值?
- MyEclipse設定文字編碼Eclipse
- Tower 最新註冊碼 Tower 破解下載
- Proxifier註冊碼啟用最新版
- JProfiler 13 Mac版,JProfiler 13註冊碼Mac
- containerd 原始碼分析:啟動註冊流程AI原始碼
- VMware Workstation各個版本的註冊碼
- Netty原始碼分析--Channel註冊(中)(六)Netty原始碼
- Netty原始碼分析--Channel註冊(上)(五)Netty原始碼
- @angular/router 原始碼分析之註冊路由Angular原始碼路由
- Dynamics CRM 用程式碼註冊Plugin StepPlugin