我通过jasper-reports导出CSV文件。它工作正常,但是我想将逗号切换为分号。我找到了一些解决方案,但已弃用。我一直在寻找SimpleCsvReportConfiguration中的方法,但没有一个圆满的结局。
有人可以帮忙吗?
JRCsvExporter exporter = new JRCsvExporter();
exporter.setExporterInput(SimpleExporterInput.getInstance(jasperPrints));
exporter.setExporterOutput(new SimpleWriterExporterOutput(response.getOutputStream()));
SimpleCsvReportConfiguration configuration = new SimpleCsvReportConfiguration();
exporter.exportReport();
最佳答案
您应该将其添加到您的.jrxml文件中:
<property name="net.sf.jasperreports.export.csv.field.delimiter" value=";"/>
关于java - 如何在CSV jasper-reports 6.5中将逗号切换为分号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50286429/