Intellij IDEA 14的注册码
IntelliJ IDEA 14 注册码
IntelliJ IDEA 14 下载地址:
分享几个license:
(1)
key:IDEA
value:61156-YRN2M-5MNCN-NZ8D2-7B4EW-U12L4
(2)
key:huangwei
value:97493-G3A41-0SO24-W57LI-Y2UGI-JGTU2
(3)
key:hkl520
value:34423-VZYXD-FQXZ7-O6I7U-J3ZK8-R7V62
(4)
key:Intelligent
value:40957-EG6O9-2915L-CF1RP-57IQJ-Y6VZ3
(5)
key:tommy
value:49164-YPNVL-OXUZL-XIWM4-Z9OHC-LF053
(6)
key:whuanghk
value:98220-IN97R-TV1ID-2JAPO-OXZEO-LAM70
(7)
key:itey
value:91758-T1CLA-C64F3-T7X5R-A7YDO-CRSN1



以下是破解代码:
- import java.math.BigInteger;
- import java.util.Date;
- import java.util.Random;
- import java.util.zip.CRC32;
- public class keygen
- {
- /**
- * @param s
- * @param i
- * @param bytes
- * @return
- */
- public static short getCRC(String s, int i, byte bytes[])
- {
- CRC32 crc32 = new CRC32();
- if (s != null)
- {
- for (int j = 0; j < s.length(); j++)
- {
- char c = s.charAt(j);
- crc32.update(c);
- }
- }
- crc32.update(i);
- crc32.update(i >> 8);
- crc32.update(i >> 16);
- crc32.update(i >> 24);
- for (int k = 0; k < bytes.length - 2; k++)
- {
- byte byte0 = bytes[k];
- crc32.update(byte0);
- }
- return (short) (int) crc32.getValue();
- }
- /**
- * @param biginteger
- * @return String
- */
- public static String encodeGroups(BigInteger biginteger)
- {
- BigInteger beginner1 = BigInteger.valueOf(0x39aa400L);
- StringBuilder sb = new StringBuilder();
- for (int i = 0; biginteger.compareTo(BigInteger.ZERO) != 0; i++)
- {
- int j = biginteger.mod(beginner1).intValue();
- String s1 = encodeGroup(j);
- if (i > 0)
- {
- sb.append("-");
- }
- sb.append(s1);
- biginteger = biginteger.divide(beginner1);
- }
- return sb.toString();
- }
- /**
- * @param i
- * @return
- */
- public static String encodeGroup(int i)
- {
- StringBuilder sb = new StringBuilder();
- for (int j = 0; j < 5; j++)
- {
- int k = i % 36;
- char c;
- if (k < 10)
- {
- c = (char) (48 + k);
- }
- else
- {
- c = (char) ((65 + k) - 10);
- }
- sb.append(c);
- i /= 36;
- }
- return sb.toString();
- }
- /**
- * @param name
- * @param days
- * @param id
- * @param prtype
- * @return
- */
- public static String MakeKey(String name, int days, int id)
- {
- id %= 100000;
- byte bkey[] = new byte[12];
- bkey[0] = (byte) 1; // Product type: IntelliJ IDEA is 1
- bkey[1] = 14; // version
- Date d = new Date();
- long ld = (d.getTime() >> 16);
- bkey[2] = (byte) (ld & 255);
- bkey[3] = (byte) ((ld >> 8) & 255);
- bkey[4] = (byte) ((ld >> 16) & 255);
- bkey[5] = (byte) ((ld >> 24) & 255);
- days &= 0xffff;
- bkey[6] = (byte) (days & 255);
- bkey[7] = (byte) ((days >> 8) & 255);
- bkey[8] = 105;
- bkey[9] = -59;
- bkey[10] = 0;
- bkey[11] = 0;
- int w = getCRC(name, id % 100000, bkey);
- bkey[10] = (byte) (w & 255);
- bkey[11] = (byte) ((w >> 8) & 255);
- BigInteger pow = new BigInteger("89126272330128007543578052027888001981", 10);
- BigInteger mod = new BigInteger("86f71688cdd2612ca117d1f54bdae029", 16);
- BigInteger k0 = new BigInteger(bkey);
- BigInteger k1 = k0.modPow(pow, mod);
- String s0 = Integer.toString(id);
- String sz = "0";
- while (s0.length() != 5)
- {
- s0 = sz.concat(s0);
- }
- s0 = s0.concat("-");
- String s1 = encodeGroups(k1);
- s0 = s0.concat(s1);
- return s0;
- }
- public static void main(String[] args)
- {
- if (args.length == 0)
- {
- System.err.printf("*** Usage: %s name%n", keygen.class.getCanonicalName());
- System.exit(1);
- }
- Random r = new Random();
- System.out.println(MakeKey(args[0], 0, r.nextInt(100000)));
- }
- }
直接保存为keygen.java
D:\develop>javac keygen.java
D:\develop>java keygen username
67937-QF06H-9X5JW-HWYVN-0G2G3-WVDL1
在线注册机
http://appcode.aliapp.com
转载:http://hw1287789687.iteye.com/blog/2153894
将以下代码保存成keygen.java
import java.math.BigInteger;
import java.util.Date;
import java.util.Random;
import java.util.zip.CRC32; public class keygen
{
/**
* @param s
* @param i
* @param bytes
* @return
*/
public static short getCRC(String s, int i, byte bytes[])
{
CRC32 crc32 = new CRC32();
if (s != null)
{
for (int j = 0; j < s.length(); j++)
{
char c = s.charAt(j);
crc32.update(c);
}
}
crc32.update(i);
crc32.update(i >> 8);
crc32.update(i >> 16);
crc32.update(i >> 24);
for (int k = 0; k < bytes.length - 2; k++)
{
byte byte0 = bytes[k];
crc32.update(byte0);
}
return (short) (int) crc32.getValue();
} /**
* @param biginteger
* @return String
*/
public static String encodeGroups(BigInteger biginteger)
{
BigInteger beginner1 = BigInteger.valueOf(0x39aa400L);
StringBuilder sb = new StringBuilder();
for (int i = 0; biginteger.compareTo(BigInteger.ZERO) != 0; i++)
{
int j = biginteger.mod(beginner1).intValue();
String s1 = encodeGroup(j);
if (i > 0)
{
sb.append("-");
}
sb.append(s1);
biginteger = biginteger.divide(beginner1);
}
return sb.toString();
} /**
* @param i
* @return
*/
public static String encodeGroup(int i)
{
StringBuilder sb = new StringBuilder();
for (int j = 0; j < 5; j++)
{
int k = i % 36;
char c;
if (k < 10)
{
c = (char) (48 + k);
}
else
{
c = (char) ((65 + k) - 10);
}
sb.append(c);
i /= 36;
}
return sb.toString();
} /**
* @param name
* @param days
* @param id
* @param prtype
* @return
*/
public static String MakeKey(String name, int days, int id)
{
id %= 100000;
byte bkey[] = new byte[12];
bkey[0] = (byte) 1; // Product type: IntelliJ IDEA is 1
bkey[1] = 14; // version
Date d = new Date();
long ld = (d.getTime() >> 16);
bkey[2] = (byte) (ld & 255);
bkey[3] = (byte) ((ld >> 8) & 255);
bkey[4] = (byte) ((ld >> 16) & 255);
bkey[5] = (byte) ((ld >> 24) & 255);
days &= 0xffff;
bkey[6] = (byte) (days & 255);
bkey[7] = (byte) ((days >> 8) & 255);
bkey[8] = 105;
bkey[9] = -59;
bkey[10] = 0;
bkey[11] = 0;
int w = getCRC(name, id % 100000, bkey);
bkey[10] = (byte) (w & 255);
bkey[11] = (byte) ((w >> 8) & 255);
BigInteger pow = new BigInteger("89126272330128007543578052027888001981", 10);
BigInteger mod = new BigInteger("86f71688cdd2612ca117d1f54bdae029", 16);
BigInteger k0 = new BigInteger(bkey);
BigInteger k1 = k0.modPow(pow, mod);
String s0 = Integer.toString(id);
String sz = "0";
while (s0.length() != 5)
{
s0 = sz.concat(s0);
}
s0 = s0.concat("-");
String s1 = encodeGroups(k1);
s0 = s0.concat(s1);
return s0;
} public static void main(String[] args)
{
if (args.length == 0)
{
System.err.printf("*** Usage: %s name%n", keygen.class.getCanonicalName());
System.exit(1);
}
Random r = new Random();
System.out.println(MakeKey(args[0], 0, r.nextInt(100000)));
}
}
然后运行以下命令:
javac keygen.java
java keygen 注册用户名
有钱的朋友请支持正版。
转载:
http://www.cnblogs.com/huangjacky/p/4152528.html
Intellij IDEA 14的注册码的更多相关文章
- intellij idea 14 ULTIMATE 注册码
Name:happy KEY:63763-YCO0I-QR4TV-G4I3E-4XGK9-GQSQ3
- IntelliJ IDEA 14 注册码生成器
IntelliJ IDEA 14 注册码生成器 文件为Java代码 自己编译运行里面的程序输入名称然后就生成注册码了工具:http://yun.baidu.com/s/1cZKsA部分工具生成的注册码 ...
- IntelliJ IDEA 14 注册码生成java代码(转)
https://confluence.jetbrains.com/display/IntelliJIDEA/Previous+IntelliJ+IDEA+Releases 分享几个license: ( ...
- IntelliJ IDEA 14.1.4破解方法-通过程序根据用户名生成注册码
将下面的代码拷贝到Eclipse或者其他的开发工具中,在main方法中指定自己的用户名(随意),运行main方法,在控制台即可生成注册码.然后启动IntelliJ IDEA 14.1.4,然后根据提示 ...
- IntelliJ IDEA 14 注册码
IntelliJ IDEA 14 下载地址: IntelliJ IDEA 14 下载 分享几个license: (1) key:IDEA value:61156-YRN2M-5MNCN-NZ8D2-7 ...
- linux下Intellij Idea 14的安装
一.安装配置jdk 虽然很多Linux发行版现在已经自带OpenJDK,但是在开发过程中 ...
- ReSharper.8.0.14.856注册码
ReSharper.8.0.14.856注册码 用户名:ronle 注册码:ZoJzmeVBoAv9Sskw76emgksMMFiLn4NM 网络转载
- [Keygen]IntelliJ IDEA 14.1.7
IntelliJ IDEA 14.1.7 Keygen package com.candy.keygen.intelliJIdea; import java.math.BigInteger; impo ...
- 【转】Intellij IDEA 14中使用MyBatis-generator 自动生成MyBatis代码
Intellij IDEA 14 作为Java IDE 神器,接触后发现,非常好用,对它爱不释手,打算离开eclipse和myeclipse,投入Intellij IDEA的怀抱. 然而在使用的过程中 ...
随机推荐
- zend studio 安装xdebug
XDebug安装 到http://xdebug.org/download.php选择自己需要的xdebug版本.然后按照下面的配置建立目录.并在php.ini加入这些内容.重启server 注意xde ...
- JavaScript网站设计实践(五)编写photos.html页面,实现点击缩略图显示大图的效果
一.photos.html页面,点击每一张缩略图,就在占位符的位置那里,显示对应的大图. 看到的页面效果是这样的: 1.实现思路 这个功能在之前的JavaScript美术馆那里已经实现了. 首先在页面 ...
- php中global和$GLOBALS[]的分析之一
PHP 的全局变量和 C 语言有一点点不同,在 C 语言中,全局变量在函数中自动生效,除非被局部变量覆盖 这可能引起一些问题,有些人可能漫不经心的改变一个全局变量.PHP 中全局变量在函数 ...
- iOS 并发概念浅析
在进行iOS开发过程中,我们常会遇到网络请求.复杂计算.数据存取等比较耗时的操作,如果处理不合理,将对APP的流畅度产生较大影响.除了优化APP架构,并发(concurrency)是一个常用且较好的解 ...
- 仿简书、淘宝等等App的View弹出效果
昨天用简书App的时候觉得这个View的弹出效果特别好,而且非常平滑,所以我就尝试写了一个,和简书App上的效果基本一致了: 下面开始讲解: 1.首先我们要知道这个页面有几个View?这个页面其实有四 ...
- Java基础知识强化之IO流笔记67:Properties的特殊功能使用
1. Properties的特殊功能 public Object setProperty(String key,String value):添加元素 public String getProperty ...
- opencv里面CV_32FC1家族
因为总是接触过这样一些#define里面的东西但是总也不知道是干什么用的.而且每看一次梦比一次. 对于这些东西到底是什么的简写根本就不能理解. 原意是跑一下这个例程的: cvRectangle( my ...
- Android -tool工具UIautomatorviewer提示“不能让屏幕黑屏”
Android中有很多工具可以让我们使用,我使用比较多的有属DDMS,UIautomatorviewer,DDMS中信息也很强大,有空的时候在理理 这篇博主写的很详细:http://www.cnblo ...
- TCP/IP三次握手
题目: TCP建立连接的过程采用三次握手,已知第三次握手报文的发送序列号为1000,确认序列号为2000,请问第二次握手报文的发送序列号和确认序列号分别为 1999,999 1999,1000 999 ...
- sql 更新重复数据只取一条记录
select s.* from ( select *, row_number() over (partition by PersonnelAccount order BY Personnel ...