Here you can find the source of getNowDate(String format)
public static final String getNowDate(String format)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final String getNowDate(String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); Date date = new Date(); return sdf.format(date); }// w w w.j av a 2 s .c om }