Here you can find the source of toLongDate()
public static String toLongDate()
//package com.java2s; //License from project: Apache License public class Main { public static String toLongDate() { return String.valueOf(toLongTime()); }/*from ww w . ja v a 2s .c o m*/ public static long toLongTime() { return System.currentTimeMillis(); } }