0

我知道如何创造InputSource出来,Reader但如何反过来呢?

我正在捕获org.xml.sax.InputSource,现在想将其输入org.xmlpull.v1.XmlPullParser. 那个有几个 setInput 方法,但这些只接受ReaderInputStream作为参数。转换成其中之一的最佳方法是InputSource什么?

4

1 回答 1

0

傻我

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

其中“是”是 InputSource

于 2009-09-16T22:56:51.983 回答