Here you can find the source of generateRandomString()
static String generateRandomString()
//package com.java2s; //License from project: Apache License public class Main { /**//w w w .j av a2 s. c om * @return */ static String generateRandomString() { return Long.toHexString(Double.doubleToLongBits(Math.random())); } }