1. 程式人生 > >做出一個驗證碼

做出一個驗證碼

package cn.itcast.other;

import java.util.Random;

/*
 需求: 實現一個四位的驗證碼。
 
 */


public class Demo6 {
	
	
	public static void main(String[] args) {
		char[] arr = {'a','A','中','雨','共','W','O','1','9','4'};
		
		Random random  = new Random();
		
		//建立一個字串緩衝區類
		StringBuilder sb = new StringBuilder();
		
		//產生四個隨即的索引值。
		for(int i = 0 ; i < 4 ; i++){
			int index = random.nextInt(arr.length);
			char temp = arr[index];
			sb.append(temp);
		}
		System.out.println("驗證碼:"+ sb);
		
		
	}

}