× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



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 thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

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.