This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes XML and Related Technologies and the fly likes Unmarshalling date without timezone with jaxb Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Engineering » XML and Related Technologies
Reply Bookmark "Unmarshalling date without timezone with jaxb" Watch "Unmarshalling date without timezone with jaxb" New topic
Author

Unmarshalling date without timezone with jaxb

Eugene Leung
Greenhorn

Joined: Jun 19, 2006
Posts: 1
I am now trying to unmarshal a date into an XML file by using jaxb. But there is always a timezone offset shown in the generated element, like:

<TRANSFER_DT>2006-08-14+08:00</TRANSFER_DT>

But what I want is:

<TRANSFER_DT>2006-08-14</TRANSFER_DT>

The xsd is like:

<xs:complexType name="Date.CT">
<xs:annotation>
<xs ocumentation>Pattern: YYYY-MM-DD
</xs ocumentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs ate"/>
</xs:simpleContent>
</xs:complexType>

Because the xsd file is provided by 3rd party, I cannot change it in anyway. But I don't have any clue how to get rid of the timezone. I tried to clear the timezone, set the time to 0, but the timezone offset is still here.

I have tried to search for previous posts for related topic. But it seems that there is no answer for it.

Can anyone here please help me?
 
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.
 
subject: Unmarshalling date without timezone with jaxb
 
Similar Threads
Schema design Help
jaxb - getting InvocationTargetException during parsing
ArrayOfType Problem
xsd: how to define an element of type integer which can validate even if it is empty
namespace