Here you can find the source of getSundayOfWeek()
public static String getSundayOfWeek()
//package com.java2s; import java.util.Calendar; public class Main { public static String getSundayOfWeek() { Calendar c = Calendar.getInstance(); java.text.SimpleDateFormat df = new java.text.SimpleDateFormat("yyyy-MM-dd"); c.setFirstDayOfWeek(Calendar.MONDAY); c.set(Calendar.DAY_OF_WEEK, 1); return df.format(c.getTime()); }//from w w w .j a va 2s . c o m }