Here you can find the source of getTime(java.util.Date date)
Parameter | Description |
---|---|
date | a parameter |
public static String getTime(java.util.Date date)
//package com.java2s; //License from project: Open Source License public class Main { public static String getTime(java.util.Date date) { return format(date, "HH:mm:ss"); }/*from w w w. j a v a 2s.co m*/ public static String format(java.util.Date date, String format) { String result = ""; try { if (date != null) { java.text.DateFormat df = new java.text.SimpleDateFormat(format); result = df.format(date); } } catch (Exception e) { } return result; } }