用Java转换StAX源代码

前端之家收集整理的这篇文章主要介绍了用Java转换StAX源代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一些代码
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)

这会产生以下错误

Caught: javax.xml.transform.TransformerException: Can’t transform a Source of type javax.xml.transform.stax.StAXSource

reader对象的类型为com.sun.org.apache.xerces.internal.impl.XMLStreamReaderImpl

解决方法

所以我愚蠢地尝试了错误的事情.这解决了它:
System.setProperty("javax.xml.transform.TransformerFactory","com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl");
原文链接:https://www.f2er.com/java/130054.html

猜你在找的Java相关文章