Here you can find the source of getCurrentMillisecondString()
public static String getCurrentMillisecondString()
//package com.java2s; //License from project: Apache License public class Main { /**/* w w w .j a v a2 s. c o m*/ * Returns a string of current timestamp with millisecond precision. * * @return A string containing the current timestamp. */ public static String getCurrentMillisecondString() { return String.valueOf(System.currentTimeMillis()); } }