【发布时间】:2015-12-07 13:16:45
【问题描述】:
我正在尝试以 RTL 模式导出 excel jasper 报告。我的报告属性似乎没有正常工作。 在本报告中,我使用以下属性来指导我的 excel 工作表 ti RTL。
net.sf.jasperreports.export.xlsx.sheet.direction=RTL
我也尝试了另一种方法:
exporter = new JRXlsxExporter();
exporter.setExporterOutput(new SimpleOutputStreamExporterOutput(out));
SimpleXlsReportConfiguration configuration = new SimpleXlsReportConfiguration();
configuration.setSheetDirection(RunDirectionEnum.RTL);
exporter.setConfiguration(configuration);
以上解决方案均无效。请有人帮帮我。
【问题讨论】:
标签: jasper-reports right-to-left xlsx