摘要:
随机数 //进入发送逻辑的时候生成随机验证码,六位数字sale = RandomStringUtils.randomNumeric(6); 随机数范围 import java.util.Random; public class RandomUtil { public static Integer g 阅读全文
摘要:
String.format()字符串常规类型格式化的两种重载方式 format(String format, Object… args) 新字符串使用本地语言环境,制定字符串格式和参数生成格式化的新字符串。 format(Locale locale, String format, Object… a 阅读全文