常用工具类
2019-12-03 11:24 如是我所闻 阅读(136) 评论(0) 编辑 收藏 举报1 字符串转MD5
1.1 引入maven
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
</dependency>
1.2 使用 (org.apache.commons.codec.digest.DigestUtils)
String pwdMd5 = DigestUtils.md5Hex(pwd);