Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

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

                         

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 
Latest Searches:
how to use tab control
'string variable in sw
select a row of data t
application context in
MULTIPLE SELECT COMBO
how to capture multipl
3DS MAX Effects Advanc
create funtions in ora
array exmples
combine integer and st
convert linked list to
tablibrary
what is array.
Updownselect Tag (Form
dynamic insert value J
types of webserver
requestdispatcher in j
update form in java
get url
<ajax:> tag in jstl
swing
java program to find s
Detached criteria
Java Count words,reve
java write file line b
display image in java
program to invoke ejb
PDF Tutorials
how to write in pdf us
input and output speed
Hibernate Min() Functi
Reading File into Byte
write int to file
spring with quartz
checkbox button enable
jar
square root loop
ั?à¹???ะà¸?ะà¸?à
tibco
decimals
ejp
fireTableCellUpdated
Copy One Database Tabl
breakаÐ?????аÐ????а
create txt file in spe
Photoshop Cut out imag
hibernate many to many
jsp bank examples
log4j:WARN No appender
file read and write i
value change listener
Add listener to compon
xml to Excel using ja
Photoshop Text Effects
source code for displa
comparing the elements
java quiz
how to get applicate s
Creating Website with
navigate to other page
day number of year
seam tutorial
Removing
tuxedo
prefix=
"day number of year"
java servlets
source code for displa
load file
array element in php
how can create panel g
maven
GMT
Setting Header
Nested WHILE LOOPS
Photoshop Digital Art
Error handling in stru
program
websphere administrati
dojo dialog
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

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

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

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

Copyright © 2008. All rights reserved.