serializeDate and deserializeDate are one day off
-------------------------------------------------

                 Key: JIBX-209
                 URL: http://jira.codehaus.org/browse/JIBX-209
             Project: JiBX
          Issue Type: Bug
          Components: core
    Affects Versions: JiBX 1.1.5
            Reporter: Ryan Senior
            Priority: Minor
         Attachments: starter.zip

When using the Date serializer/deserializer:

<format type="java.util.Date" 
deserializer="org.jibx.runtime.Utility.deserializeDate"  
serializer="org.jibx.runtime.Utility.serializeDate"/>

it is actually one day off.  When deserializing a date, it subtracts a day and 
when serializing it adds a day.  Attached is example code of this, but 
basically the problem is on line 652 of Utility.java:

long day = parseDigits(text, split+4, 2) - 1;

which converts 2008/03/11 to 2008/03/10.  It looks like it will also add a day 
when deserializing it (line 1121 of Utility.java) :

 int day = (int)(extra / MSPERDAY) + 1;

The attached code is a modified version of the starter application to include a 
date and throws an exception if the date is a day off.



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
jibx-devs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jibx-devs

Reply via email to