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.
を使用して各 SQL クエリ (または一連のクエリ) の出力用の HTML ファイルを生成する XSLT スクリプトを開発する必要があるという特定の要件がありますjavax.sql.rowset.WebRowSet.writeXml(ResultSet rs, OutputStream oStream)。
javax.sql.rowset.WebRowSet.writeXml(ResultSet rs, OutputStream oStream)
誰もこれを達成する方法を知っていますか?
writeXml に書き込み先の ByteArrayOutputStream を指定し、これを StreamSource にラップして変換への入力として提供します。
XML にメモリを割り当てずに直接ストリーミングしたい場合は、2 つのスレッドを使用してそれを実現できますが、それはより複雑になります。