生成一个随机码

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_36675996/article/details/79538455
String checkCode = "";
         char[] arrs = { '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', '0', '1', '2', '3', '4', '5', '6', '7',
                    '8', '9' };
        // 随机生成6位验证码
            for (int i = 0; i < 6; i++) {
                int a = (int) (Math.random() * 38);
                checkCode += arrs[a];
            }

猜你喜欢

转载自blog.csdn.net/qq_36675996/article/details/79538455
今日推荐