Here you can find the source of getWeekNumber(Date date, Integer day)
Parameter | Description |
---|---|
date | a parameter |
day | a parameter |
public static Integer getWeekNumber(Date date, Integer day)
//package com.java2s; //License from project: Apache License import java.util.Calendar; import java.util.Date; public class Main { public static Integer getWeekNumber(Date date) { return getWeekNumber(date, 0); }// w w w .j a v a 2 s . c o m public static Integer getWeekNumber(Date date, Integer day) { Calendar c = Calendar.getInstance(); c.setTime(date); return c.get(Calendar.WEEK_OF_MONTH) + day; } }