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