Java生成6位数验证码
public static String getCode() {
return String.valueOf((int) ((Math.random() * 9 + 1) * 100000));
}
生成结果:(随机)
本文来自博客园,作者:迷糊桃,转载请注明原文链接:https://www.cnblogs.com/mihutao/p/15378907.html
public static String getCode() {
return String.valueOf((int) ((Math.random() * 9 + 1) * 100000));
}
生成结果:(随机)
本文来自博客园,作者:迷糊桃,转载请注明原文链接:https://www.cnblogs.com/mihutao/p/15378907.html