使用 XSL 转换器的 GZip HttpResponse

发布于 2024-07-07 15:58:34 字数 502 浏览 12 评论 0原文

我的 Servlet 中有以下代码,但是当 IE 点击该页面时,它返回一个空白的 html 页面。 如果我直接在 StreamResult 构造函数中使用 response.getOutputStream() ,则页面加载正常。 我缺少什么?

response 是 HttpServletResponse 的实例,xsl 是来自 XSLTC TransformerFactory 的 Transformer 实例

response.setHeader("Content-Encoding", "gzip");
GZIPOutputStream gzipOut = new GZIPOutputStream(response.getOutputStream());
Result outputResult = new StreamResult(gzipOut);

xsl.transform(xmlSource, outputResult);

I have the following code below in my Servlet, but when IE hits the page, it returns a blank html page. If I use the response.getOutputStream() directly in the StreamResult constructor, the page loads fine. What am I missing?

response is an instance of HttpServletResponse and xsl is an instance of Transformer from XSLTC TransformerFactory

response.setHeader("Content-Encoding", "gzip");
GZIPOutputStream gzipOut = new GZIPOutputStream(response.getOutputStream());
Result outputResult = new StreamResult(gzipOut);

xsl.transform(xmlSource, outputResult);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

述情 2024-07-14 15:58:34

我猜测您没有关闭 gzipOut 流,因此它不会发送“页脚”信息。

I'm going to guess that you aren't closing the gzipOut stream and therefore it isn't sending the "footer" information.

贪了杯 2024-07-14 15:58:34

结果发现该流上需要一个 .finish() 。 它与flush类似,但由于它是不同的调用,所以Transformer不知道如何使用它。

Turns out there is a .finish() on this stream that is required. It is similar to flush, but since it is a different call, the Transformer does not know to use it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文