Apache Common Java Tutorial

import java.util.Date;
import org.apache.commons.lang.time.DateFormatUtils;
public class MainClass {
    public static void main(String[] args) {
      //Format milliseconds in long
      System.out.println("4) MMM dd yy HH:mm >>>" +
          DateFormatUtils.format(System.currentTimeMillis(), "MMM dd yy HH:mm"));
    }
}
4) MMM dd yy HH:mm May 09 07 12:54