Here you can find the source of toShortW3CDTF(Date d, boolean yearOnly)
public static String toShortW3CDTF(Date d, boolean yearOnly)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String toShortW3CDTF(Date d, boolean yearOnly) { SimpleDateFormat format = new SimpleDateFormat(yearOnly ? "yyyy" : "yyyy-MM-dd"); return format.format(d); }/*from ww w . jav a 2 s . c o m*/ }