1.生成之指定位数的随机字符串
/**
* 随机基数
*/
private static char[] charset = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'g', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'G', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}; /**
* 获取指定位数的随机字符串
*
* @param len 指定位数
* @return
*/
private static String getRandomStr(int len) {
StringBuffer sb = new StringBuffer(len);
for (int i = 0; i < 3; i++) {
char c = charset[new Random().nextInt(charset.length)];
sb.append(c);
}
return sb.toString();
}
2、指定位数补零
/**
* 不足指定位数前补0
*
* @param length 长度
* @param source 需要补位的数字
* @return
*/
private static String beforeZeroFill(int length, int source) {
return String.format("%0" + length + "d", source);
}