码迷,mamicode.com
首页 > 编程语言 > 详细

加密算法使用(一):用CRC32来压缩32uuid字符串

时间:2016-04-25 15:00:11      阅读:675      评论:0      收藏:0      [点我收藏+]

标签:

CRC32相比MD5重复率较高,

不过我们仍然可以使用CRC32然后转长整形的方式将32位的UUID字符串压缩成更短的整形唯一标识。

 

 1 /**
 2      * 
 3      * @Title: getCRC32Value
 4      * @author:liuyx 
 5      * @date:2015年11月6日下午5:26:12
 6      * @Description: 获取字符串对应的重复概率较小的整形
 7      * @param str 传入字符串
 8      * @return
 9      */
10     public static String getCRC32Value(String str) {
11         
12         CRC32 crc32 = new CRC32();
13         crc32.update(str.getBytes());
14         System.out.println(crc32.getValue());
15         
16         /*str = str.replace("-", "");
17         str = str.replaceAll("[a-zA-Z]", "");
18         if(str.length()>10) {
19             str = str.substring(str.length()-10);
20         }else if(str.length()==0) {
21             //String temp = Long.toString(System.currentTimeMillis());
22             str = "";
23         }*/
24         return Long.toString(crc32.getValue());
25     }

 

加密算法使用(一):用CRC32来压缩32uuid字符串

标签:

原文地址:http://www.cnblogs.com/flying607/p/5430804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!