I am using a SAX parser in my code which will take either InputStream or File object only. I need to give a collection as input for this SAX parser. So i need to convert it into InputStream or File object. So can anyone tell how to convert a collection datatype into either inputstream or file.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
The parser expects data in XML format. You can either code a method to lay out your collection as XML or unmarshall the collection with JAXB. |
|||
|
|
|
If your Collection is like-
then simple getter of the list you can pass to SAX method. |
|||
|
|