Here you can find the source of getWeekNum(Date date)
public static String getWeekNum(Date date)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; import java.util.Locale; public class Main { public static String getWeekNum(Date date) { Calendar c = Calendar.getInstance(Locale.CHINA); c.setTime(date);/*from w ww . j av a 2 s. c om*/ String week = Integer.toString(c.get(Calendar.WEEK_OF_YEAR)); return week; } }