|
So do I need to instantiate a new calendar? When I put that code in, it's telling me that Calendar cannot be resolved. Ron Power Programmer Information Services City Of St. John's, NL P.O. Box 908 St. John's, NL A1C 5M2 Tel: 709-576-8132 Email: rpower@xxxxxxxxxx Website: http://www.stjohns.ca/ ___________________________________________________________________________ Success is going from failure to failure without a loss of enthusiasm. - Sir Winston Churchill "Clapham, Paul" <pclapham@xxxxxxxxxxxxx> Sent by: java400-l-bounces@xxxxxxxxxxxx 2005/07/13 04:02 PM Please respond to Java Programming on and around the iSeries / AS400 <java400-l@xxxxxxxxxxxx> To "Java Programming on and around the iSeries / AS400" <java400-l@xxxxxxxxxxxx> cc Subject RE: Comparing dates?? What's probably happening is that b.getSchedPickUpDateCal() is returning 2005 July 13 00:00:00.000 and Calendar.getInstance() is returning 2005 July 13 11:28:33.179, which is obviously "after". (Do some debugging to confirm this is correct.) To normalize your Calendar so its time portion is all zeros: today.set(Calendar.HOUR_OF_DAY, 0); today.set(Calendar.MINUTE, 0); today.set(Calendar.SECOND, 0); today.set(Calendar.MILLISECOND, 0); (Don't use the Calendar.HOUR constant or your code will work in the morning but not in the afternoon. Took me a while to figure that one out!) PC2 -----Original Message----- From: java400-l-bounces@xxxxxxxxxxxx [mailto:java400-l-bounces@xxxxxxxxxxxx] On Behalf Of RPower@xxxxxxxxxx Sent: July 13, 2005 11:30 To: Java Programming on and around the iSeries / AS400 Subject: Comparing dates?? Hello all, This might seem like a noob question, but I'm trying to compare two dates and it's not working like I expect. In my JSP I have: java.util.Calendar today = java.util.Calendar.getInstance(); if ((today.after(b.getSchedPickUpDateCal())) && (b.getSchedPickUpDateCal()!=null)){ Where b.getSchedPickUpDateCal returns the date of the scheduled pickup. What's happening is that if the date of the pickup and the current date are the same, this today.after() is returning true? I have no idea what's going on, but that's what it is doing. Am I doing this right?
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.