Java 格式 数量/金额

发布于 2024-11-25 20:40:55 字数 328 浏览 1 评论 0原文

我想格式化金额:所需的格式是:#.##0,00 示例:299.552.698,05 或 299.552.698,00

当我尝试使用时

  (new DecimalFormat("#.##0,00")).format($F{amount}.doubleValue())

它会导致异常,当我尝试使用时:

NumberFormat.getCurrencyInstance(Locale.ENGLISH).format($F{amount}.doubleValue())

我有我不想打印的货币符号。

I would like to format an amount : the required format is : #.##0,00
example : 299.552.698,05 or 299.552.698,00

When I try to use

  (new DecimalFormat("#.##0,00")).format($F{amount}.doubleValue())

It causes an exception and whan I try to use :

NumberFormat.getCurrencyInstance(Locale.ENGLISH).format($F{amount}.doubleValue())

I have the symbole of the currency which I don't want to print.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

云归处 2024-12-02 20:40:55

"#.##0,00" 是无效的格式字符串。

逗号,以及逗号,是分组字符,但它是本地化的,这意味着如果您设置区域设置,您将获得适合您的区域设置的分隔符。

如果您喜欢“单行黑客”方式,这将起作用:

new DecimalFormat("#,##0.00").format($F{amount}.doubleValue()).replace(",", "x").replace(".", ",").replace("x", ".");

"#.##0,00" is an invalid format string.

The comma, and only the comma, is the grouping character, but it is localized, meaning if you set the Locale, you'll get the appropriate separator for your locale.

If you prefer the "one-line hack" way, this will work:

new DecimalFormat("#,##0.00").format($F{amount}.doubleValue()).replace(",", "x").replace(".", ",").replace("x", ".");
岁吢 2024-12-02 20:40:55

好吧,我会使用 DecimalFormatSymbols 类来欺骗格式化程序,如下所示:

public String formatNumber(double value) {
    DecimalFormat formatter = new DecimalFormat("###,###.00");
    DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.getDefault());
    symbols.setDecimalSeparator(',');
    symbols.setGroupingSeparator('.');
    formatter.setDecimalFormatSymbols(symbols);
    return formatter.format(value);
}

希望它对您有用......

Well, I would use the DecimalFormatSymbols class to trick the formatter, like this:

public String formatNumber(double value) {
    DecimalFormat formatter = new DecimalFormat("###,###.00");
    DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.getDefault());
    symbols.setDecimalSeparator(',');
    symbols.setGroupingSeparator('.');
    formatter.setDecimalFormatSymbols(symbols);
    return formatter.format(value);
}

hope it works for you...

苍景流年 2024-12-02 20:40:55

也许是这样的:

DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.ENGLISH);
return (new DecimalFormat("#.##0,00", symbols)).format($F{amount}.doubleValue());

查看 DecimalFormat< 的两个参数构造函数/a>

Maybe something like:

DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.ENGLISH);
return (new DecimalFormat("#.##0,00", symbols)).format($F{amount}.doubleValue());

Check out the two argument constructor for DecimalFormat

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文