Having trouble format decimal point in Excel with JasperReport

最后都变了- 提交于 2021-02-04 19:53:46

问题


I made an excel report, which contains some Double type TextFields with number format pattern ##0.#

In OpenOffice, these cells are formatted correctly (Which is exactly what I need)

  • 1.56 -> 1.6
  • 0.0 -> 0

However, when I opened report with Microsoft Excel, the decimal point did not disappear like I excpected.

  • 1.56 -> 1.6
  • 0.0 -> 0.

After some search, I found a post about number format in Excel.

In Excel format number with optional decimal places

I tried [=0]0;.# instead as the post suggested. But Excel complain about about my cell number format are broken.

My question is : What pattern should I use in JasperReport, so Excel won't show the trailing decimal point ?

UPDATE : I just find out the pattern described in link dose not solve all cases, it match only 0, not 1.0, 2.0... etc.


回答1:


You can try to use net.sf.jasperreports.export.xls.formula property.

The sample:

<textField pattern="##0.#">
    <reportElement x="0" y="0" width="100" height="20">
        <property name="net.sf.jasperreports.export.xls.formula" value="[=0]0;##0,#"/>
    </reportElement>
    <textElement/>
    <textFieldExpression><![CDATA[$F{sum}]]></textFieldExpression>
</textField>

In my case the comma (,) is delimiter in my OS.

The information about net.sf.jasperreports.export.xls.formula property you can find here.




回答2:


As workaround you may paste in field this code:

new DecimalFormat("0.##").format($F{bigdecValue})

So, processing for xls will be without comma if thera are trailinig zeros.



来源:https://stackoverflow.com/questions/8676576/having-trouble-format-decimal-point-in-excel-with-jasperreport

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!