如何在数字格式化时反转逗号和点 [英] How to invert the comma and dot when number formatting

查看:372
本文介绍了如何在数字格式化时反转逗号和点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的报告中的数字可视化如下: 123,456.00



我正在尝试将数字显示为这样: 123.456,00



我知道我应该使用iReport中的模式,但我找不到合适的模式。

解决方案

更多模式问题这似乎是



jaspersoft-studio


窗口>>首选项>>报告执行:区域设置



The numbers in my report are visualized like this : 123,456.00

I'm trying to get the number visualized like this instead: 123.456,00

I know that I should use the patterns in iReport but I am not able to find the right pattern.

解决方案

More then pattern problem this seems to be a Locale problem.

You are using an Locale as US and you like to use a Locale as example ITALY

To set desired Local on report generation pass it as a parameter with the key JRParameter.REPORT_LOCALE:

Map<String,Object> params = new HashMap<String,Object>(); 
params.put(JRParameter.REPORT_LOCALE, Locale.ITALY); 
JasperFillManager.fillReportToFile(jasperReport, params); //Example of fill method use your own...

To set it inside of the IDE, in

Window>>Options>>Compilation and execution: Report Local

In

Window>>Preferences>>Report Execution: Locale

这篇关于如何在数字格式化时反转逗号和点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆