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