Here you can find the source of getWeekOfYear()
public static String getWeekOfYear()
//package com.java2s; import java.util.Calendar; public class Main { public static String getWeekOfYear() { String num = Calendar.getInstance().get(Calendar.WEEK_OF_YEAR) + ""; return num.length() == 1 ? "0" + num : num; }//from w ww .j a v a 2 s .c om }