首页  >  文章  >  Java  >  Java唯一码生成

Java唯一码生成

大家讲道理
大家讲道理原创
2016-11-10 10:25:371387浏览

private static String beforeBh;
 private static String beforeNum;
public static String codeGenerate() {
   Date now = new Date();
   String behind = now.getTime()+"";
   if(beforeBh==null) {
    beforeBh = behind;
   } else if(beforeBh.equals(behind)) {
    behind = behind +beforeNum;
    beforeNum++;
   } else {
    beforeBh = behind;
    beforeNum = 0;
   }
   return behind;


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn