4.java随机⽣成指定长度的字符串//⽣成随机数字和字母,
public static String getStringRandom(int length) {
String val = "";
Random random = new Random();
//参数length,表⽰⽣成⼏位随机数
for(int i = 0; i < length; i++) {
String charOrNum = Int(2) % 2 == 0 ? "char" : "num";
字符串长度c++//输出字母还是数字
if( "char".equalsIgnoreCase(charOrNum) ) {
//输出是⼤写字母还是⼩写字母
int temp = Int(2) % 2 == 0 ? 65 : 97;
val += (char)(Int(26) + temp);
} else if( "num".equalsIgnoreCase(charOrNum) ) {
val += String.Int(10));
}
}
return val;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论