Here you can find the source of getDate(String pattern)
public static String getDate(String pattern)
//package com.java2s; //License from project: Apache License import java.sql.Timestamp; import java.text.SimpleDateFormat; public class Main { public static String getDate(String pattern) { SimpleDateFormat sf = new SimpleDateFormat(pattern); return sf.format(new Timestamp(System.currentTimeMillis())); }//www. j a v a 2s.co m }