Here you can find the source of getMonthPath(Date date)
public static String getMonthPath(Date date)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static final String MONTH_FORMAT_DATEPATH = "yyyy/MM"; public static String getMonthPath(Date date) { return new SimpleDateFormat(MONTH_FORMAT_DATEPATH).format(date); }/* w w w . j ava 2 s.c om*/ public static String format(Date date, String format) { return date != null ? new SimpleDateFormat(format).format(date).toString() : ""; } }