天天看點

使用java生成具體位數的随機字母加數字

生成具體位數的随機字母加數字

public static String genRandomNum(){
  	  int  maxNum = 36;
  	  int i;
  	  int count = 0;
  	  char[] str = { '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' };	  
  	  StringBuffer pwd = new StringBuffer("");
  	  Random r = new Random();
  	  while(count < 22){
  	   i = Math.abs(r.nextInt(maxNum));   
  	   if (i >= 0 && i < str.length) {
  	    pwd.append(str[i]);
  	    count ++;
  	   }
  	  }
  	  return pwd.toString();
  	}