项目开发过程中突然要加入一个用户激活码,找了很多种方式都不尽人意,最后自己想了一个生成方式,基本解决了需求,六位数35进制已经能支持1838265625的用户ID了,目前来说足够了。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
package com.mobirit.mtmhep.community.utils; import java.util.Random; /** * 序列号生成器 * @author Johney * */ public class SerialNumberUtil { /**自定义进制(0,1没有加入,容易与o,l混淆)*/ private static final char[] r = new char[] { 'Q', 'w', 'E', '8', 'a', 'S', '2', 'd', 'Z', 'x', '9', 'c', '7', 'p', 'O', '5', 'i', 'K', '3', 'm', 'j', 'U', 'f', 'r', '4', 'V', 'y', 'L', 't', 'N', '6', 'b', 'g', 'H' }; /**自动补全组(不能与自定义进制有重复)*/ private static final char[] b = new char[] { 'q', 'W', 'e', 'A', 's', 'D', 'z', 'X', 'C', 'P', 'o', 'I', 'k', 'M', 'J', 'u', 'F', 'R', 'v', 'Y', 'T', 'n', 'B', 'G', 'h' }; /**进制长度*/ private static final int l = r.length; /**序列最小长度*/ private static final int s = 6; /** * 根据ID生成六位随机码 * @param num ID * @return 随机码 */ public static String toSerialNumber(long num) { char[] buf = new char[32]; int charPos = 32; while ((num / l) > 0) { buf[--charPos] = r[(int) (num % l)]; num /= l; } buf[--charPos] = r[(int) (num % l)]; String str = new String(buf, charPos, (32 - charPos)); //不够长度的自动随机补全 if (str.length() < s) { StringBuffer sb = new StringBuffer(); Random rnd = new Random(); for (int i = 0; i < s - str.length(); i++) { sb.append(b[rnd.nextInt(24)]); } str += sb.toString(); } return str; } } |
根据上述代码获取的激活码就可以用了