Here you can find the source of previousWeek(long date)
date
.
Parameter | Description |
---|---|
date | Date used in calculating previous week |
date
.
public static long previousWeek(long date)
//package com.java2s; import java.util.Calendar; public class Main { private static Calendar CALENDAR = Calendar.getInstance(); /**//from w w w.j a v a 2 s. co m * Returns the week before <code>date</code>. * * @param date Date used in calculating previous week * @return week before <code>date</code>. */ public static long previousWeek(long date) { return addDays(date, -7); } /** * Adds <code>amount</code> days to <code>time</code> and returns * the resulting time. * * @param time Base time * @param amount Amount of increment. * * @return the <var>time</var> + <var>amount</var> days */ public static long addDays(long time, int amount) { Calendar calendar = CALENDAR; synchronized (calendar) { calendar.setTimeInMillis(time); calendar.add(Calendar.DAY_OF_MONTH, amount); return calendar.getTimeInMillis(); } } }