随机生成6位字母+数字混合密码

随机生成6位字母+数字混合密码


//定义密码位数 private final static int PWD_LENGTH = 6; public static String getPwdRandom() { String val = ""; Random random = new Random(); //参数length,表示生成几位随机数 for(int i = 0; i < PWD_LENGTH; i++) { String charOrNum = random.nextInt(2) % 2 == 0 ? "char" : "num"; //输出字母还是数字 if( "char".equalsIgnoreCase(charOrNum) ) { //输出是大写字母还是小写字母 int temp = random.nextInt(2) % 2 == 0 ? 65 : 97; val += (char)(random.nextInt(26) + temp); } else if( "num".equalsIgnoreCase(charOrNum) ) { val += String.valueOf(random.nextInt(10)); } } return val; }

 

原文地址:https://www.cnblogs.com/covet/p/10119381.html