Here you can find the source of currentDateToString(String format)
public static String currentDateToString(String format)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String currentDateToString(String format) { SimpleDateFormat formatter = new SimpleDateFormat(format); Date currentDate = new Date(System.currentTimeMillis()); return formatter.format(currentDate); }/* w w w. ja v a 2s. c om*/ }