Here you can find the source of createUUID()
public static String createUUID()
//package com.java2s; import java.util.UUID; public class Main { public static String createUUID() { return UUID.randomUUID().toString(); }//from ww w .j av a 2s.c om }