两个实用小工具

两个实用工具类

1. MD5加密小工具


public class EncryptUtils {
    
    

    public static String md5(String state){
    
    
        return DigestUtils.md5Hex(state);
    }


}

2.生成四位数随机验证码

public class VerifyCodeUtils {
    
    
    public static String getRandomVerifyCode(){
    
    
        return String.format("%04d", System.currentTimeMillis() % 10000L);
    }


}

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_50824019/article/details/130261637