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.

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.

share|improve this question
2  
What does your collection contain ? – prajeesh kumar Mar 14 '12 at 7:08
What is it you're trying to accomplish? Collection<?>-to-XML or something completely different? – Philipp Reichart Mar 14 '12 at 7:22

2 Answers

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.

share|improve this answer

If your Collection is like-

List<File> li = new ArrayList<File>();

then simple getter of the list you can pass to SAX method.

share|improve this answer

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.