- /*
- * 根据a-z,A-Z 52个字母,写出一个随机获取4位验证码的方法,并进行测试。
- */
- public class Demo1 {
- public static void main(String[] args) {
- String s = getCode();
- System.out.println(s);
- }
- public static String getCode() {
- String code = "";
- char[] chs = { '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' };
- for (int i = 0; i < 4; i++) {
- int index = (int) (Math.random() * (chs.length));
- char c = chs[index];
- code += c;
- }
- return code;
- }
- }
复制代码
|
|