Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Unmarshalling from a File:

   JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
   Unmarshaller u = jc.createUnmarshaller();
   Object o = u.unmarshal( new File( "nosferatu.xml" ) );

Unmarshalling from an InputStream:

   InputStream is = new FileInputStream( "nosferatu.xml" );
   JAXBContext jc = JAXBContext.newInstance( "com.acme.foo" );
   Unmarshaller u = jc.createUnmarshaller();
   Object o = u.unmarshal( is );
share|improve this question

1 Answer

The JAXB (JSR-222) APIs are already quite generic.

JAXBContext

This object is thread safe so you create this once and create all your instances of Marshaller, Unmarshaller, etc from it.

Marshaller/Unmarshaller

These objects are not thread safe, so you need to ensure that they are not being used by more than one thread at the same time. Unless you are setting any properties on then you could always do:

JAXBContext jc = JAXBContext.newInstance("com.acme.foo");
Object o = jc.createUnmarshaller().unmarshal(new File("nosferatu.xml"));
share|improve this answer
can u elaborate on this... – user1734340 Oct 11 '12 at 5:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.