zoukankan      html  css  js  c++  java
  • Java get yesterday's date

    Java get yesterday's date

        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())); 
        }
        }
  • 相关阅读:
    网络检查思路和步骤
    查看网络状态
    【Linux常见命令】lsof命令
    【Linux常见命令】ip命令
    【Linux常见命令】ifconfig命令:配置与查看网络信息
    【Linux常见命令】netstat命令
    Java-MD5
    Java发送邮件
    Maven基础02
    Maven基础01
  • 原文地址:https://www.cnblogs.com/lexus/p/2524307.html
Copyright © 2011-2022 走看看