项目中的工具类StringUtils和DigestUtils

来源:互联网 发布:豆丁免费下载软件 编辑:程序博客网 时间:2024/05/24 08:34

在项目中导入:commons-codec.jar和commons-lang.jar二个架包。

<span style="font-size:18px;">package junit;import org.apache.commons.codec.digest.DigestUtils;import org.apache.commons.lang.StringUtils;import org.junit.Test;public class TestUtils {@Testpublic void test(){String s="    a  ";if(StringUtils.isNotBlank(s)){System.out.println("不为空");}//加密用的工具类 MD5摘要的工具类String digest = DigestUtils.md5Hex("123");System.out.println(digest.length());System.out.println(digest);}}</span>


0 0
原创粉丝点击