Here you can find the source of getDateRandom()
public static String getDateRandom()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getDateRandom() { String s = new SimpleDateFormat("yyyyMMddHHmmssSSS").format(new Date()); return s; }// w ww. j a v a2 s . c om }