Here you can find the source of parseDateStrFormat(String strDate)
public static synchronized String parseDateStrFormat(String strDate)
//package com.java2s; //License from project: Apache License import java.text.*; public class Main { public static synchronized String parseDateStrFormat(String strDate) { SimpleDateFormat sdf = new SimpleDateFormat("HH:mm"); return sdf.format(strDate); }//from w ww. ja v a 2 s. c o m }