Here you can find the source of getDateWeekLabel(long date)
public static String getDateWeekLabel(long date)
//package com.java2s; import java.text.SimpleDateFormat; public class Main { private static String DATE_WEEK_FORMAT = "yyyy-MM-dd E"; public static String getDateWeekLabel(long date) { SimpleDateFormat sdf = new SimpleDateFormat(DATE_WEEK_FORMAT); return sdf.format(date); }/*from ww w . j a va 2s . c om*/ }