Here you can find the source of getCurrentHMS()
public static String getCurrentHMS()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.*; public class Main { public static final String _DEFAULT1 = "yyyy-MM-dd HH:mm"; public static final String _DEFAULT4 = "yyyy-MM-dd"; public static String getCurrentHMS() { SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss"); Date date = new Date(); return sdf.format(date); }//w w w . j a v a2 s. c om public static String format(Date date) { return formatDate(date, _DEFAULT4); } public static String formatDate(Date date) { return formatDate(date, _DEFAULT1); } public static String formatDate(Date date, String style) { return new SimpleDateFormat(style).format(date); } }