有没有办法在 JSP 页面中显示 HSSFWorkbook 对象?

发布于 2024-07-21 01:36:15 字数 474 浏览 6 评论 0原文

有没有办法在 JSP 页面中显示 HSSFWorkbook 对象,而无需在服务器端输出文件? 在下面的代码中,我提供了模板文件和 net.sf.jxls.transformer.XLSTransformer.transformXLS(InputStream is, Map beanParams) 所需的 beans,以返回 HSSFWorkbook 对象。 我现在需要一种在 JSP 中使用此对象的方法,而不必使用 OutputStream 将输出文件存储在服务器端。

InputStream is = new BufferedInputStream(new FileInputStream(templateFileName));
HSSFWorkbook hm = transformer.transformXLS(is, beans);
req.getSession().setAttribute("excelWorkBook",hm);

Is there a way to Display a HSSFWorkbook Object in a JSP page without having an output file in the server side?
In the code below I am providing the template file and the beans required for net.sf.jxls.transformer.XLSTransformer.transformXLS(InputStream is, Map beanParams) to return me a HSSFWorkbook object. I now need a way to use this object in a JSP without having to store the output file in the server side using OutputStream.

InputStream is = new BufferedInputStream(new FileInputStream(templateFileName));
HSSFWorkbook hm = transformer.transformXLS(is, beans);
req.getSession().setAttribute("excelWorkBook",hm);

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

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

发布评论

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

评论(1

初相遇 2024-07-28 01:36:15

看起来很简单,在实例上使用 write 方法编写 HSSFWorkbook;

HSSFWorkbook#write(OutputStream)

其中输出流是;

response.getOutputStream()

您可能想要执行一些操作,例如设置响应的 ContentType 以及一些内容处置属性。

Looks simple, write the HSSFWorkbook using the write method on your instance;

HSSFWorkbook#write(OutputStream)

where the output stream is the;

response.getOutputStream()

Youll probably want to do things like set the ContentType of the reponse as well as maybe some content dispostion attributes.

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