| Article: |
Generating an XML Document with JAXB | |
| Subject: | unmarshalling | |
| Date: | 2009-03-10 02:10:44 | |
| From: | suris | |
|
hi, i tried to follo the steps for unmarshalling...
|
||
Showing messages 1 through 2 of 2.
-
unmarshalling
2009-04-03 12:01:50 Deepak Vohra | [View]
-
unmarshalling
2009-09-17 22:27:37 sumapuji [View]
Hi Deepak,
I'm new for jaxb. Please provide for me one simple developed application on jaxb, then i will able to understand the flow on jaxb..
I do not have any idea on marshalling and unmarshalling techniques.
for runnning jaxb on my system, need i install any softwares?
Please provide me valuable info. I will be thankful to u.
Thanks,
Suma



Unmarshaller unMarshaller = jaxbContext.createUnmarshaller();
JAXBElement<JournalType> journalElement = (JAXBElement<JournalType>)
unMarshaller.unmarshal(new StreamSource(new ByteArrayInputStream(xml.getBytes())),JournalType.class);
JournalType journal= journalElement.getValue();
Does a different unmarshall method unmarshall?