赞
踩
- /**
- * 生成8位随机密码
- *
- * @return
- */
- public String genRandomPwd() {
- int maxNum = 36; //定义下面数组的长度需要小写字母,在数字中添加即可
- int i;
- int count = 0;
- // 定义随机数使用的数组
- char[] str = { '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', '0', '1', '2', '3', '4', '5', '6', '7', '8',
- '9' };
- StringBuffer pwd = new StringBuffer("");
- Random r = new Random();
- // 生成8位则数字是8
- while (count < 8) {
- //防止生成负数,则对数字取正数
- i = Math.abs(r.nextInt(maxNum));
- if (i >= 0 && i < str.length) {
- pwd.append(str[i]);
- count++;
- }
- }
- return pwd.toString();
- }
此处可以给方法定义一个参数是要生成的位数,这样可以生成一个工具类,以后生成直接传入位数即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。