本文共 560 字,大约阅读时间需要 1 分钟。
是自 1970 年 1 月 1 日(00:00:00 GMT)至当前时间的总秒数。由于时间都不会重复,所以利用时间来生成一串不重复的ID或字符串就非常方便。
思路:获取当前时间的,然后转换为十六进制。
生成结果如下:
当前时间:Mon May 13 14:47:51 CST 2013
生成8位:9ca52f20
import java.util.Date; public class Test { public static void main(String[] args ) { // TODO Auto-generated method stub System.out.println(new Date()); System.out.println(toHex(new Date().getTime())); } /** * 获取8位不重复随机码(取当前时间戳转化为十六进制) * @author ShelWee * @param time * @return */ public static String toHex(long time){ return Integer.toHexString((int)time); } }
转载地址:http://lxexa.baihongyu.com/