Here you can find the source of getWeek()
public static String getWeek()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String getWeek() { Calendar cal = Calendar.getInstance(); String week = new SimpleDateFormat("yyyy-MM-dd").format(cal.getTime()); return week; }/*from w w w. j ava 2 s .com*/ }