users@jaxb.java.net

Unmarshal question

From: Sweeney, Mark <Mark.Sweeney_at_VerizonWireless.com>
Date: Fri, 23 Sep 2011 15:30:18 -0400

I am making the following call:

Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();

Object obj = unmarshaller.unmarshal(new
ByteArrayInputStream(data.getBytes()));

 

Note that jaxbContext is a singleton that has been initialized.

In my core dump I see a stack trace that ends with
java/util.zip.ZipFile.getEntry();

 

Question:

Does each call to Unmarshaller.unmarshal result in a file read
operation?

 

TIA,

Mark