Here you can find the source of randomString()
public static String randomString()
//package com.java2s; //License from project: Open Source License public class Main { public static String randomString() { return "test_" + Long.toHexString(Double.doubleToLongBits(Math.random())); }//from www . j a v a 2 s . c o m }