Java get yesterday's date
Posted on: November 1, 2008 at 12:00 AM
This section illustrates you how to obtain the yesterday's
Java get yesterday's date

This section illustrates you how to obtain the yesterday's date.

In the given example, we simply get the current date by using the method dateFormat.format(cal.getTime()).But on subtracting one day from the calendar by using the method cal.add(Calendar.DATE, -1), the method dateFormat.format(cal.getTime()) will displayed the yesterday's date.

cal.getTime()-This method returns the Date object representing the time value of Calendar.

Here is the code of GetYesterdayDate.java

import java.text.*;
import java.sql.Date;
import java.util.Calendar;

public class GetYesterdayDate{
public static void main(String[] args) {
Calendar cal = Calendar.getInstance();
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
System.out.println("Today's date is "+dateFormat.format(cal.getTime()));

cal.add(Calendar.DATE, -1);
System.out.println("Yesterday's date was "+dateFormat.format(cal.getTime()));
}
}

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。