Here you can find the source of randomSimpleId()
public static String randomSimpleId()
//package com.java2s; //License from project: Apache License public class Main { public static String randomSimpleId() { return System.currentTimeMillis() + "-" + System.nanoTime(); }/* w w w .j a v a 2 s. co m*/ }