aspose file tools
The moose likes Beginning Java and the fly likes initialise & add date Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "initialise & add date" Watch "initialise & add date" New topic
Author

initialise & add date

james ong
Greenhorn

Joined: Aug 01, 2006
Posts: 2
hihi.. how can i do a initialzation of date to 2nd June 2005, then add 3 days of the last date value? below is a sample of my code.

import java.util.Date;

public class Calendar {
private static Date today;

public static Date getDate() {
return (Date)today.clone();
}

public static void tock(int days) {
//add advance date (7 days)???
}
}
Christophe Verré
Sheriff

Joined: Nov 24, 2005
Posts: 14685
    
  16

I won't post code here, you can figure it out by looking at the SimpleDateFormat class.
Another thing, avoid to call your class "Calendar", because it's already an Java API class.


[My Blog]
All roads lead to JavaRanch
James Brown
Greenhorn

Joined: Aug 01, 2006
Posts: 4
yes, I think you can use these apis and codes:
apis:
SimpleDataformat
java.util.GregorianCalendar.

codes:
.....

public Date getTheAfterDay(Date date, int days) {
GregorianCalendar startCalendar = new GregorianCalendar();
startCalendar.setTime(date);
startCalendar.add(GregorianCalendar.DATE, days);
return startCalendar.getTime();
}

You need import java.util.Date and java.util.GregorianCalendar .
Good Luck!
if you have any qustions please contact me , my msn :wp_java_wp@hotmail.com


good luck everyone
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: initialise & add date
 
Similar Threads
Date and Calendar
how to add 30 days to current data?
add day to current date
Date and Calender help
Wants to add days in Date.. please help