Here you can find the source of getWeekNumberFromDate(String thedate)
public static String getWeekNumberFromDate(String thedate)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String getWeekNumberFromDate(String thedate) { String strReturn = ""; SimpleDateFormat bartDateFormat = new SimpleDateFormat("yyyy-MM-dd"); String dateStringToParse = thedate; try {//from w w w.jav a 2 s. c o m Date date = bartDateFormat.parse(dateStringToParse); SimpleDateFormat bartDateFormat2 = new SimpleDateFormat("yyyy-MM-dd EEEE"); strReturn = bartDateFormat2.format(date); } catch (Exception ex) { ex.printStackTrace(); } return strReturn; } }