Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个特定的要求,我必须开发 XSLT 脚本,这些脚本生成 HTML 文件,用于使用javax.sql.rowset.WebRowSet.writeXml(ResultSet rs, OutputStream oStream).
javax.sql.rowset.WebRowSet.writeXml(ResultSet rs, OutputStream oStream)
有谁知道如何实现这一目标?
给 writeXml 一个要写入的 ByteArrayOutputStream,然后将它封装在 StreamSource 中作为转换的输入。
如果您想避免为 XML 分配内存并直接对其进行流式传输,则可以使用两个线程来实现,但这会更复杂。