Intellij IDEA 14.1.4安装详细图解与注册方法

Intellij IDEA 14.1.4安装详细图解与注册方法


----------------------------------

声明:仅供学习交流测试,严禁用于商业用途,请于24小时内删除!


1. 先下载Intellij IDEA 14.1.4安装文件,推荐下载旗舰版

注:也可选择Community社区版,是免费的,只是功能没用旗舰版多,个人开发完全够了。

①官网下载地址:https://www.jetbrains.com/idea/#chooseYourEdition

2. 开始安装Intellij IDEA 14.1.4

①安装图解步骤:


②步骤:


③步骤(自定义安装目录)


3. 注册Intellij IDEA 14.1.4

①注册方法:

    以下是破解代码 : (将以下代码保存为 keygen.java )
 //以下是破解代码: 将以下代码保存成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)));  
  }  
}  


②将keygen.java 保存到d盘。执行如下命令,生成自己的注册码:

D:\>javac keygen.java
D:\>java keygen username  

注:username可以任意输入一个名字即可,不要重复即可。


③启动Intellij IDEA 14.1.4 ,输入上个步骤生成的注册码:


输入注册码:


④继续完成后续步骤:


4. 启动Intellij IDEA 14.1.4,新建项目,至此安装注册完成了,开心得做开发吧~~


--------------------------------------------------------------------------
5、额外奉献Intellij IDEA 注册码生成链接网址

http://idea.qinxi1992.cn/ 
http://idea.lanyus.com/ 
http://blog.lanyus.com/archives/174.html


6. 结束语

尽管可以破解,但是还是希望大家多多支持正版!或者使用社区版,社区版不用破解。
若资金允许,请点击https://www.jetbrains.com/idea/buy/购买正版,谢谢合作 。
学生凭学生证可免费申请正版授权 | 创业公司可5折购买正版授权。

声明:仅供学习交流测试,严禁用于商业用途,请于24小时内删除!

本系列其他文章:

Intellij IDEA 2017.1.5 安装详细图解与注册方法
http://blog.csdn.net/chenchunlin526/article/details/75045456
--------------------- 
 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值