I want to makes my jasperrepport's csv documents values separated with semicolons instead of commas.

I've found net.sf.jasperreports.export.csv.field.delimiter parameter which works if i adds it on my jrxml files :

<property name="net.sf.jasperreports.export.csv.field.delimiter" value=";"/>

But what I'm looking for is a global configuration file in my jasper server which can define this configuration key as the default for every csv repport.

Is their a solution for this problem ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can set fieldDelimiter property in applicationContext.xml file (you can find it in jasperserver\WEB-INF\ folder) at JasperServer

<bean id="csvExportParameters" class="com.jaspersoft.jasperserver.api.engine.jasperreports.common.CsvExportParametersBean">
    <property name="fieldDelimiter" value=","/>
</bean>
link|improve this answer
I found this parameter but even when I restart the server it does not change anything. How can I force jasper to use this setting ? – Manuel Leduc Oct 17 '11 at 9:19
Hmmm, it works for me. – Alex K Oct 17 '11 at 9:30
Did you edit this file: apache-tomcat\webapps\jasperserver\WEB-INF\applicationContext.xml? And set this property: <bean id="csvExportParameters" class="com.jaspersoft.jasperserver.api.engine.jasperreports.common.CsvExportPara‌​metersBean"> <property name="fieldDelimiter" value=";"/> </bean>? – Alex K Oct 17 '11 at 9:31
@Manuel Do you mean that exported data (csv file) has comma as delimiter instead of ";" symbol? – Alex K Oct 17 '11 at 9:37
I do. And yes I have replaced "," by ";" in applicationContext.xml – Manuel Leduc Oct 17 '11 at 10:00
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.