Here you can find the source of format16ByDate(Date aDate)
public static String format16ByDate(Date aDate)
//package com.java2s; //License from project: Open Source License import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final String _16DIGIT_DATE_TIME = "yyyy/MM/dd-HH:mm:ss"; public static String format16ByDate(Date aDate) { SimpleDateFormat sdf = new SimpleDateFormat(_16DIGIT_DATE_TIME); return sdf.format(aDate); }/* ww w . j a va 2s. co m*/ public static String format(Date aDate, String type) { SimpleDateFormat sdf = new SimpleDateFormat(type); return sdf.format(aDate); } public static String format(Long dateMs, String type) { Date date = new Date(dateMs); SimpleDateFormat sdf = new SimpleDateFormat(type); return sdf.format(date); } }