Here you can find the source of getHHmmSS()
public static String getHHmmSS()
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getHHmmSS() { Date d = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss"); return sdf.format(d); }/*from w ww . j a v a2 s .com*/ }