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