Here you can find the source of getFirstDayOfWeek(String week)
public static String getFirstDayOfWeek(String week)
//package com.java2s; //License from project: Apache License import java.text.ParseException; import java.text.SimpleDateFormat; public class Main { public static String getFirstDayOfWeek(String week) { try {//from w w w .j a va2 s .c o m return getDefaultDateFormat().format(getDefaultWeekFormat().parse(week)); } catch (ParseException e) { return "ERROR_DAY"; } } public static SimpleDateFormat getDefaultDateFormat() { return new SimpleDateFormat("yyyyMMdd"); } public static SimpleDateFormat getDefaultWeekFormat() { return new SimpleDateFormat("yyyyww"); } }