码迷,mamicode.com
首页 > 其他好文 > 详细

随机不重复流水号。

时间:2014-09-05 12:55:11      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   java   ar   for   div   sp   

import java.util.UUID;

public class GUID {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        //一般
        String uuid = UUID.randomUUID().toString();
        System.out.println("---uuid "+uuid);
        
        //去除“-”
        String[] uus= uuid.split("-");
        String str="";
        for(int i=0;i<uus.length;i++){
            str+=uus[i];
        }
        System.out.println("---uuid "+str+"\n");
        
    }

}

 

随机不重复流水号。

标签:style   blog   color   os   java   ar   for   div   sp   

原文地址:http://www.cnblogs.com/harry335/p/3957813.html

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