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

I know how to create InputSource out of Reader but how to do it the other way around?

I'm capturing org.xml.sax.InputSource and now want to feed it into org.xmlpull.v1.XmlPullParser. That one has few setInput methods but these only accept Reader or InputStream as an argument. What would be the best way to convert InputSource into one of these?

share|improve this question

1 Answer

up vote 0 down vote accepted

Silly me

XmlPullParser xpp = factory.newPullParser();
xpp.setInput(is.getCharacterStream());

Where "is" is InputSource

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.