Here you can find the source of randomFilename()
public static String randomFilename()
//package com.java2s; //License from project: Apache License public class Main { public static String randomFilename() { return System.currentTimeMillis() + ("" + Math.random()).replaceAll("\\.", ""); }//from ww w. jav a 2 s . c om }