Here you can find the source of getTimeOnlyDateFormat()
public static DateFormat getTimeOnlyDateFormat()
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; public class Main { public static DateFormat getTimeOnlyDateFormat() { return new SimpleDateFormat("HH:mm:ss z"); }//from www . ja v a 2s.co m }