Dates problem in java

How can I select all of the dates between two dates? For example, given the start date 12/2/2007 and the end date 12/5/2007 I want to return: 12/2/200712/3/200712/4/200712/5/2007
[220 byte] By [Anil_kumara] at [2007-11-27 9:46:09]
# 1
grab a Calendar instance and iterate using add() until you reached the final date...
CeciNEstPasUnProgrammeura at 2007-7-12 23:56:04 > top of Java-index,Java Essentials,Java Programming...
# 2
Can u be more specific or can you provide me the codeThank you
Anil_kumara at 2007-7-12 23:56:04 > top of Java-index,Java Essentials,Java Programming...
# 3

HINT: Use a loop to test the condition where the end date equals the current iteration date.

Output the current iteration date.

Increment the iteration date using Calendar.add function.

There is the pseudo-code... if you can't write java code based on pseudo code then you have no business programming.

maple_shafta at 2007-7-12 23:56:04 > top of Java-index,Java Essentials,Java Programming...
# 4

I have already solved the problem

By the way where is the psuedo code what does that mean

If somebody asks you some question that does not mean that he is not fit for the programming business. If you can help It would be great otherwise

Thanks to CeciNEstPasUnProgrammeur

he has provided me the correct path

Thank you

Message was edited by:

Anil_kumar

Anil_kumara at 2007-7-12 23:56:04 > top of Java-index,Java Essentials,Java Programming...