如何使 xls 文件成为 JasperReports 的数据源?
我有一个返回 xls 文件的网页。
我正在尝试使用页面的输出作为 JasperReports 的数据源。
现在我有类似的东西
JRXlsDataSource ds = new JRXlsDataSource(JRLoader.getLocationInputStream("http://192.168.20.19/people/XLS.jsf"));
,但我收到这个错误 net.sf.jasperreports.engine.JRException: jxl.read.biff.BiffException: 未找到输入文件
如何读取流,然后在 JasperPrint 对象中使用它?
I have a web page that returns a xls file.
I'm trying to use the output of the page as a datasource for JasperReports.
Right now I have something like
JRXlsDataSource ds = new JRXlsDataSource(JRLoader.getLocationInputStream("http://192.168.20.19/people/XLS.jsf"));
but I get this error
net.sf.jasperreports.engine.JRException: jxl.read.biff.BiffException: The input file was not found
How can I read the stream and then use it in the JasperPrint object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参考下面的链接,它将为 jasper 报告提供
XLS 数据源
的完整概念http://jasperreports.sourceforge.net/sample.reference/xlsdatasource/index.html
Please refer the link below, it would provide a complete idea of
XLS datasource
for jasper reporthttp://jasperreports.sourceforge.net/sample.reference/xlsdatasource/index.html