赞
踩
finalshell的免费激活高级版
1、打开激活/升级界面,用户名,密码随便填入,然后点击离线激活
2、到此界面,点击复制
3、打开idea或者eclipse,就是java的编辑器,输入以下代码(代码放在图片下面),运行
- package test;
-
- import java.io.IOException;
- import java.security.MessageDigest;
- import java.security.NoSuchAlgorithmException;
- import java.util.Scanner;
-
- public class FinalShell {
- public static void main(String[] args) throws NoSuchAlgorithmException, IOException {
- System.out.print("请输入FinalShell的离线机器码:");
- @SuppressWarnings("resource")
- Scanner reader = new Scanner(System.in);
- String machineCode = reader.nextLine();
- generateKey(machineCode);
- }
-
- public static void generateKey(String hardwareId) throws NoSuchAlgorithmException {
- String proKey = transform(61305 + hardwareId + 8552);
- String pfKey = transform(2356 + hardwareId + 13593);
- System.out.println("请将此行复制到离线激活中:" + proKey);
- }
-
- public static String transform(String str) throws NoSuchAlgorithmException {
-
- @SuppressWarnings("unused")
- String md5 = hashMD5(str);
-
- return hashMD5(str).substring(8, 24);
- }
-
- public static String hashMD5(String str) throws NoSuchAlgorithmException {
- MessageDigest digest = MessageDigest.getInstance("MD5");
- byte[] hashed = digest.digest(str.getBytes());
- StringBuilder sb = new StringBuilder();
- for (byte b : hashed) {
- int len = b & 0xFF;
- if (len < 16) {
- sb.append("0");
- }
- sb.append(Integer.toHexString(len));
- }
- return sb.toString();
- }
- }
将复制的代码粘贴在运行的结果中,并回车运行,得到生成的代码,如下
4、将生成的代码复制,粘贴到激活码处,点击激活,出现已激活高级版本即可
5、这样就可以查看具体参数了(系统信息好像还是看不了)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。