1 package com.LW.Math;
 2 
 3 import java.util.Random;
 4 
 5 public class Demo2 {
 6     
 7     public static void main(String[] args) {
 8         
 9         //生产验证码
10         char[] arr  = {\'a\',\'b\',\'c\',\'d\',\'e\',\'f\',\'g\',\'h\',\'1\',\'2\',\'3\',\'4\',\'5\'};
11         StringBuffer str = new StringBuffer();
12         //随机在数组中选择四个数
13         Random random = new Random();
14         for(int i = 0;i<4 ;i++){
15             
16             //开始产生随机数
17             int index = random.nextInt(arr.length);
18             
19             str.append(arr[index]);
20             
21         }
22         
23         System.out.println("验证码:"+str);
24     }
25 }

 

版权声明:本文为lwlxqlccc原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/lwlxqlccc/articles/6113950.html