/**
* Created by xc on 2019/11/23
* 生成隨機密碼:6位數字
*/
public class Test7_4 {
public static void main(String[] args) {
System.out.println(randomPassword());//382630
}
public static String randomPassword() {
char[] chars = new char[6];
Random rnd = new Random();
for (int i = 0; i < 6; i++) {
chars[i] = (char) ('0' + rnd.nextInt(10));
}
return new String(chars);
}
}
/** * Created by xc on 2019/11/23 * 生成隨機密碼:簡單8位 * 8位密碼,字符可能由大寫字母、小寫字母、數字和特殊符號組成 */ public class Test7_5 { private static final String SPECIAL_CHARS = "!@#$%^&*_=+-/"; public static void main(String[] args) { System.out.println(randomPassword());//ejgY^14* } private static char nextChar(Random rnd) { switch (rnd.nextInt(4)) { case 0: return (char) ('a' + rnd.nextInt(26)); case 1: return (char) ('A' + rnd.nextInt(26)); case 2: return (char) ('0' + rnd.nextInt(10)); default: return SPECIAL_CHARS.charAt(rnd.nextInt(SPECIAL_CHARS.length())); } } public static String randomPassword() { char[] chars = new char[8]; Random rnd = new Random(); for (int i = 0; i < 8; i++) { chars[i] = nextChar(rnd); } return new String(chars); } }
/** * Created by xc on 2019/11/23 * 生成隨機密碼:復雜8位 */ public class Test7_6 { private static final String SPECIAL_CHARS = "!@#$%^&*_=+-/"; public static void main(String[] args) { System.out.println(randomPassword());//Q*82-/zQ } private static int nextIndex(char[] chars, Random rnd) { int index = rnd.nextInt(chars.length); while (chars[index] != 0) { index = rnd.nextInt(chars.length); } return index; } private static char nextSpecialChar(Random rnd) { return SPECIAL_CHARS.charAt(rnd.nextInt(SPECIAL_CHARS.length())); } private static char nextUpperlLetter(Random rnd) { return (char) ('A' + rnd.nextInt(26)); } private static char nextLowerLetter(Random rnd) { return (char) ('a' + rnd.nextInt(26)); } private static char nextNumLetter(Random rnd) { return (char) ('0' + rnd.nextInt(10)); } public static String randomPassword() { char[] chars = new char[8]; Random rnd = new Random(); chars[nextIndex(chars, rnd)] = nextSpecialChar(rnd); chars[nextIndex(chars, rnd)] = nextUpperlLetter(rnd); chars[nextIndex(chars, rnd)] = nextLowerLetter(rnd); chars[nextIndex(chars, rnd)] = nextNumLetter(rnd); for (int i = 0; i < 8; i++) { if (chars[i] == 0) { chars[i] = nextChar(rnd); } } return new String(chars); } private static char nextChar(Random rnd) { switch (rnd.nextInt(4)) { case 0: return (char) ('a' + rnd.nextInt(26)); case 1: return (char) ('A' + rnd.nextInt(26)); case 2: return (char) ('0' + rnd.nextInt(10)); default: return SPECIAL_CHARS.charAt(rnd.nextInt(SPECIAL_CHARS.length())); } } }