gpt4 book ai didi

java - fmt :formatNumber? 只有小数位

转载 作者:行者123 更新时间:2023-11-29 06:18:50 25 4
gpt4 key购买 nike

是否可以通过fmt:formatNumber 仅显示小数位?我基本上需要在两个字段中呈现类似价格的 double :小数和小数位 (123.456 -> 123 456),我想避免字符串拆分等。:-)

该解决方案还必须使用最少的小数位数才能创建例如:

123.1 -> 123 01

The data represented is a price that is stored as a decimal number for some reason.

minFractionDigits="2" would produce .01 as output for the second field.

Another output example would be:

123<span>01</span>

最佳答案

是的:

<fmt:formatNumber maxIntegerDigits="0" />

更新:

如何乘以 100、1000 或类似值,然后将其输出为整数。说:

<fmt:formatNumber maxIntegerDigits="3"  value="${yourValue * 1000}" 
maxFractionDigits="0" />

不过,因此您将不得不修剪一些小数位。

关于java - fmt :formatNumber? 只有小数位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4034633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com