/** * 生成验证码 * * @param num 位数 * @return 纯数字验证码 */public static String generateAuthCode(int num) { String chars = "0123456789"; char[] rands = new char[num]; for (int i = 0; i < num; i++) { int rand = (int) (Math.random() * 10); rands[i] = chars.charAt(rand); } return new String(rands);}
/** * 指定位数的随机数 * @param length * @return */public static String getRandomNumber(int length) { char[] chr = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9'}; Random random = new Random(); StringBuffer buffer = new StringBuffer(); for (int i = 0; i < length; i++) { buffer.append(chr[random.nextInt(chr.length)]); } return buffer.toString();}
/** * JAVA获得0-9,A-Z范围的随机数 * * @param length 随机数长度 * @return String */public static String getRandomChar0(int length) { char[] chr = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'}; Random random = new Random(); StringBuffer buffer = new StringBuffer(); for (int i = 0; i < length; i++) { buffer.append(chr[random.nextInt(chr.length)]); } return buffer.toString();}/** * JAVA获得0-9,a-z,A-Z范围的随机数 * * @param length 随机数长度 * @return String */public static String getRandomChar1(int length) { char[] chr = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', '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', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'}; Random random = new Random(); StringBuffer buffer = new StringBuffer(); for (int i = 0; i < length; i++) { buffer.append(chr[random.nextInt( chr.length )]); } return buffer.toString();}public static void main(String[] args) { System.out.println(getRandomChar1(6));}
其中,random.nexInt(int n)用于获取0到n的随机整数,不包括n