8

次のようなコードがあります。

XMLInputFactory xif = XMLInputFactory.newInstance()
TransformerFactory tf = TransformerFactory.newInstance("org.apache.xalan.processor.TransformerFactoryImpl", null)

Transformer t = tf.newTransformer()
DOMResult result = new DOMResult()
t.transform(new StAXSource(reader), result)

次のエラーが発生します。

キャッチ: javax.xml.transform.TransformerException: タイプ javax.xml.transform.stax.StAXSource のソースを変換できません

リーダー オブジェクトのタイプはcom.sun.org.apache.xerces.internal.impl.XMLStreamReaderImpl

4

2 に答える 2