Jump to content
We've recently updated our Privacy Statement, available here ×

net.sf.jasperreports.export.xls.pattern to export time format to Excel


soake

Recommended Posts

Hi all,

 

I am trying to use the net.sf.jasperreports.export.xls.pattern.{arbitrary_pattern} in Jasper studio pro 7.1 to set the time format for a cell that I export to excel.  Mt textfield code looks like this:

            <textField pattern="h:mm a">                <reportElement x="625" y="18" width="100" height="16" uuid="bcea4688-0afe-4091-880e-f52b375c7a95">                    <property name="com.jaspersoft.studio.unit.height" value="px"/>                    <property name="com.jaspersoft.studio.unit.rightIndent" value="px"/>                    <property name="com.jaspersoft.studio.unit.leftIndent" value="px"/>                </reportElement>                <textElement textAlignment="Center" verticalAlignment="Bottom">                    <font size="6"/>                    <paragraph leftIndent="2" rightIndent="2"/>                </textElement>                <textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>            </textField>[/code]

I have set the pattern in the following ways:

    <property name="net.sf.jasperreports.export.xls.pattern.h:mm a=h:mm AM/PM"/>[/code]

or 

    <property name="net.sf.jasperreports.export.xls.pattern.h:mm a=h:mm AM/PM"/>[/code]

In both cases, when I export to excel, my time in the cell looks like

13:43 a

and when I look in the formula window, I see 5/31/2019  1:43:26 PM. Can someone please tell me what I am doing incorrect?

Link to comment
Share on other sites

  • 1 year later...
  • Replies 4
  • Created
  • Last Reply

Top Posters In This Topic

  • 1 year later...

In my case, I needed to display timestamps based on locale. Adding onto qianyd's answer above, I selected the element that needed formatting, went to properties, searched for the "net.sf.jasperreports.export.xls.pattern" property  and used a Pattern Expression for that property with this value

$P{REPORT_LOCALE}.equals(Locale.forLanguageTag("en-gb")) ? "dd/MM/yyyy HH:mm" : $P{REPORT_LOCALE}.equals(Locale.forLanguageTag("fr-ca")) ? "yy-MM-dd HH:mm" :  "M/d/yy h:mm AM/PM"[/code]
Link to comment
Share on other sites

  • 7 months later...

 I had the same issue which which converts date format Apr 14, 2023, 09:29:00 PM to Oct 23, 2022, 02:34:00 a when export report to excel with jasper report version 8.

 I was able to fix it by making following property inside bean id="xlsExportParameters" in applicationContext.xml (WEB-INF/applicationContext.xml) and restart the server.

```<property name="detectCellType" value="false"/>```

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...