相关代码 |
|
package com.myznt.test; import com.myznt.util.MD5Code; public class TestMD5 { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub MD5Code md5 = new MD5Code(); String str = "zhangbo"; //System.out.println(md5.getMD5ofStr(str)); System.out.println(md5.getMD5ofStr(str).equals(md5.getMD5ofStr(str))); } }
相关资源 |
|