整个 xls 页面应以白色背景显示

发布于 2024-11-27 01:00:53 字数 87 浏览 0 评论 0原文

我正在使用 iReport 3.7.0 并生成 Excel 格式的输出。我想显示没有网格视图的 xls 输出,即整个页面应显示为白色背景。我该怎么做?请帮我..

I'm using iReport 3.7.0 and generating an output in excel format.I want to show xls output with no grid view i.e whole page should appear with white background.How may I do that? please help me..

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

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

发布评论

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

评论(1

深海不蓝 2024-12-04 01:00:53

据我所知,JasperReports/iReport 不可能做到这一点。也许是因为网格线不是单元格格式的一部分,而是它们是每个工作表的配置选项。

如果您从自己的应用程序导出 Excel 文件,您可以使用 Apache POI 进行自己的后处理:打开 .xls 文件,更改设置,保存文件。

必要的属性是 HSSFSheetsetDisplayGridlines

public void setDisplayGridlines(boolean show)
    //Sets whether the gridlines are shown in a viewer. 

还要看看其他与网格相关的方法,其中一些可能也相关。

As far as I know this is not possible with JasperReports/iReport. Perhaps because the grid lines are not part of the cell format, instead they are a configuration option on a per-sheet basis.

In case you are exporting the Excel file from your own application, you can do your own postprocessing using Apache POI: Open the .xls file, change the setting, save the file.

The necessary property is HSSFSheet.setDisplayGridlines:

public void setDisplayGridlines(boolean show)
    //Sets whether the gridlines are shown in a viewer. 

Also take a look at the other grid-related methods, some of them might be relevant, too.

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