This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I have one date as String s = message[i].getSentDate().toString() and another one is Calendar cal = Calendar.getInstance(); cal.add(Calendar.DATE,-1); SimpleDateFormat fmt = new SimpleDateFormat("yyyy-MM-dd 'at' 14:00:00"); fmt.format(cal.getTime()); I want to put fmt.format(cal.getTime()) in a variable and compare it with s. I would like to know if the date is less or greater than the other. Whats the best way to do it Thanks, Vidhya
Thomas Paul
mister krabs
Ranch Hand
Joined: May 05, 2000
Posts: 13974
posted
0
The Calendar class has all sorts of methods for comparing two dates. So I would convert my string into a Calendar and then do the comparison.
I suggest to convert both the object to Date object. Date class implements Comparable interface which has a method called compareTo(Object o). Using the method, one can compare two Date object. -------------- Nayan
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.