Here you can find the source of generateUUID()
UUID generator random
public static String generateUUID()
//package com.java2s; //License from project: Apache License import java.util.UUID; public class Main { /**/*from w ww .j ava2s .c o m*/ * <p>UUID generator random</p> * * @author Alberto Cerqueira * @since 1.0 * @return (String) string UUID random */ public static String generateUUID() { return UUID.randomUUID().getLeastSignificantBits() + ""; } }