有没有办法在 JSP 页面中显示 HSSFWorkbook 对象?
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来很简单,在实例上使用 write 方法编写 HSSFWorkbook;
其中输出流是;
您可能想要执行一些操作,例如设置响应的 ContentType 以及一些内容处置属性。
Looks simple, write the HSSFWorkbook using the write method on your instance;
where the output stream is the;
Youll probably want to do things like set the ContentType of the reponse as well as maybe some content dispostion attributes.