Here you can find the source of getDayStringOfDate(Date date)
public static String getDayStringOfDate(Date date)
//package com.java2s; //License from project: Open Source License import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getDayStringOfDate(Date date) { DateFormat date_format = new SimpleDateFormat("yyyyMMdd"); return date_format.format(date); }/*from w ww. j a va2 s.c o m*/ }