Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions? | Software Development
 

Getting Previous, Current and Next Day Date

In this section, you will learn how to get previous, current and next date in java. The java util package provides the facility of it.

Getting Previous, Current and Next Day Date

                         

In this section, you will learn how to get previous, current and next date in java. The java util package provides the facility of it. 

Description of program:

The following program helps you to get the previous, current and next date to Date() constructor of java.util package. First of all you need put a current date in the GMT format. SimpleDateFormat() changes the GMT format according to user's requirements. For getting the previous date  subtract a day in MILLIS_IN_DAY and add a day for getting the next date.  

Here is the code of program:

import java.util.*;
import java.text.*;

public class GetPreviousAndNextDate{
  public static void main(String[] args) {
    int MILLIS_IN_DAY = 1000 60 60 24;
    Date date = new Date();
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yy");
    String prevDate = dateFormat.format(date.getTime() - MILLIS_IN_DAY);
    String currDate = dateFormat.format(date.getTime());
    String nextDate = dateFormat.format(date.getTime() + MILLIS_IN_DAY);
    System.out.println("Previous date: " + prevDate);
    System.out.println("Currnent date: " + currDate);
    System.out.println("Next date: " + nextDate);
  }
}

Download this example.

Output of program:

C:\vinod\Math_package>javac GetPreviousAndNextDate.java

C:\vinod\Math_package>java GetPreviousAndNextDate
Previous date: 17/04/07
Currnent date: 18/04/07
Next date: 19/04/07

                         

» View all related tutorials
Related Tags: c reference methods references method user system using id package node create check if preferences for call exists to automatic

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 

Current Comments

1 comments so far (
post your own) View All Comments Latest 10 Comments:

THanks.. it helped!

Posted by Nikhil on Tuesday, 11.24.09 @ 11:56am | #92820

 
Tell A Friend
Your Friend Name

 

 
Recently Viewed
Software Solutions
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.