Here you can find the source of getWeek()
public static String getWeek()
//package com.java2s; /*************************************************************** * Licensed Materials - Property of breadbox * * (c) Copyright breadbox 2014 - All Rights Reserved * ***************************************************************/ import java.text.SimpleDateFormat; import java.util.Date; public class Main { /**//from w ww . j av a 2 s .c om * * @return the current week */ public static String getWeek() { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-'W'ww-F"); return dateFormat.format(new Date()); } }