Here you can find the source of generateUUID()
public static String generateUUID()
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static String generateUUID() { UUID uuid = UUID.randomUUID(); return uuid.toString(); }// www . j a v a 2s. c om }