JAvaはランダム(英語+数字)を効率的にランダムに生成し、カスタマイズ可能
効率性
package com.messcat.imgrnt.utils;
import java.io.Serializable;
import java.util.Random;
/**
*
* @author sy
* @date 2019/8/26 13:08
*/
public class RandomUtils implements Serializable {
/**
* + ( )
* @param engCode
* @param numCode
* @return
*/
public static String verifyUserName(int engCode,int numCode){
// StringBuffer
StringBuffer sb = new StringBuffer();
char[] englishCodeArray = { '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'};
char[] numCodeArray = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'};
Random random = new Random();
//
for (int i = 0; i