自己做的网站怎么上排行榜,网站建设人群定位,山东网站建设维护,廊坊网站建设推广经验短信验证码#xff0c;相信在生活中大家是几乎天天能够遇到。但你知道它是怎样生成的吗#xff1f;其实它就是若干位数的随机数组合而成。下面附上一小段程序#xff0c;供大家一起学习交流。package com.fhcq.util;import org.apache.commons.lang3.RandomStringUtils;publ… 短信验证码相信在生活中大家是几乎天天能够遇到。但你知道它是怎样生成的吗其实它就是若干位数的随机数组合而成。下面附上一小段程序供大家一起学习交流。package com.fhcq.util;import org.apache.commons.lang3.RandomStringUtils;public class RandomNumberUtil {private static final char[] NUMBER_ARR {1,2,3,4,5,6,7,8,9,0};public static String genRandomNumber(int width) {if (width 0) {throw new IllegalArgumentException(随机串长度不能小于0);}return RandomStringUtils.random(width, NUMBER_ARR);}public static void main(String[] args) {String genRandomNumber genRandomNumber(4);System.out.println(genRandomNumber);}
}转载于:https://www.cnblogs.com/justlove/p/8651291.html