Here you can find the source of getTime(Date date)
public static String getTime(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { private static final String TIME_FORMAT = "HH:mm:ss"; private static SimpleDateFormat sFormat; public static String getTime(Date date) { sFormat = new SimpleDateFormat(TIME_FORMAT, Locale.CHINA); return sFormat.format(date); }//from w ww .j av a 2 s . c om public static String getTime() { return getTime(new Date()); } }