What's the best way to represent a time period in Java? May I use 2 Date objects or is there a better way?
I.e. all April, the hole 3rd week of July, from January to March, etc.
|
|
Here is the usual link to Joda when in comes to time + Java: http://joda-time.sourceforge.net/api-release/org/joda/time/Period.html Edit: The relevant link for this specific question is http://joda-time.sourceforge.net/api-release/org/joda/time/Interval.html |
|||||||||||||||
|
|
If you need to use 2 different dates, use 2 different dates and use SimpleDateFormat. Its very simple to use.
|
|||
|
|
|
If you want to avoid using Joda for some reason, then writing a class that wraps a pair of dates (or the underlying Long values) would be OK, but you'll need to write any methods you need for comparing ranges or determining if a date falls within a range, etc. |
|||
|
|
|
If I understand what you want. You could simply use two timestamps. Alternative one timestamp and the period time. |
|||
|
|