Here you can find the source of getUUID()
public static String getUUID()
//package com.java2s; import java.util.UUID; public class Main { public static String getUUID() { String str = UUID.randomUUID().toString(); return str; }/* www. j av a 2 s . c o m*/ }