Here you can find the source of getIso8601DayDateFormat()
public static SimpleDateFormat getIso8601DayDateFormat()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { private static final String formatIso8601Day = "yyyy-MM-dd"; public static SimpleDateFormat getIso8601DayDateFormat() { return new SimpleDateFormat(formatIso8601Day); }//from w w w.j a va 2 s. c o m }