我想使用Java的DecimalFormat来格式化双打:
#1 - 100 -> $100
#2 - 100.5 -> $100.50
#3 - 100.41 -> $100.41
到目前为止我能想到的最好的是:
new DecimalFormat("'$'0.##");
但这不适用于案例#2,而是输出“$ 100.5”
编辑:
很多这些答案只考虑案例#2和#3而没有意识到他们的解决方案会导致#1将100格式化为“$ 100.00”而不仅仅是“$ 100”。
答案 0 :(得分:22)
是否必须使用DecimalFormat
?
如果没有,看起来应该如下:
String currencyString = NumberFormat.getCurrencyInstance().format(currencyNumber);
//Handle the weird exception of formatting whole dollar amounts with no decimal
currencyString = currencyString.replaceAll("\\.00", "");
答案 1 :(得分:6)
使用NumberFormat:
NumberFormat n = NumberFormat.getCurrencyInstance(Locale.US);
double doublePayment = 100.13;
String s = n.format(doublePayment);
System.out.println(s);
另外,请勿使用双精度来表示精确值。如果您在蒙特卡罗方法中使用货币值(其值不确切),则首选双倍。
答案 2 :(得分:5)
尝试
new DecimalFormat("'$'0.00");
编辑:
我试过
DecimalFormat d = new DecimalFormat("'$'0.00");
System.out.println(d.format(100));
System.out.println(d.format(100.5));
System.out.println(d.format(100.41));
得到了
$100.00
$100.50
$100.41
答案 3 :(得分:2)
尝试使用
DecimalFormat.setMinimumFractionDigits(2);
DecimalFormat.setMaximumFractionDigits(2);
答案 4 :(得分:1)
您可以选中“是否为全数”并选择所需的数字格式。
public class test {
public static void main(String[] args){
System.out.println(function(100d));
System.out.println(function(100.5d));
System.out.println(function(100.42d));
}
public static String function(Double doubleValue){
boolean isWholeNumber=(doubleValue == Math.round(doubleValue));
DecimalFormatSymbols formatSymbols = new DecimalFormatSymbols(Locale.GERMAN);
formatSymbols.setDecimalSeparator('.');
String pattern= isWholeNumber ? "#.##" : "#.00";
DecimalFormat df = new DecimalFormat(pattern, formatSymbols);
return df.format(doubleValue);
}
}
将准确提供您想要的内容:
100
100.50
100.42
答案 5 :(得分:1)
您可以使用以下格式:
DecimalFormat dformat = new DecimalFormat(" $#。##");
答案 6 :(得分:1)
我知道为时已晚。然而,以下为我工作:
DecimalFormatSymbols otherSymbols = new DecimalFormatSymbols(Locale.UK);
new DecimalFormat("\u00A4#######0.00",otherSymbols).format(totalSale);
\u00A4 : acts as a placeholder for currency symbol
#######0.00 : acts as a placeholder pattern for actual number with 2 decimal
places precision.
希望这有助于将来阅读此内容的人:)
答案 7 :(得分:1)
您可以尝试根据条件使用两个不同的DecimalFormat
对象,如下所示:
double d=100;
double d2=100.5;
double d3=100.41;
DecimalFormat df=new DecimalFormat("'$'0.00");
if(d%1==0){ // this is to check a whole number
DecimalFormat df2=new DecimalFormat("'$'");
System.out.println(df2.format(d));
}
System.out.println(df.format(d2));
System.out.println(df.format(d3));
Output:-
$100
$100.50
$100.41
答案 8 :(得分:0)
您可以使用Java Money API来实现。 (尽管这没有使用DecialFormat)
long amountInCents = ...;
double amountInEuro = amountInCents / 100.00;
String customPattern;
if (minimumOrderValueInCents % 100 == 0) {
customPattern = "# ¤";
} else {
customPattern = "#.## ¤";
}
Money minDeliveryAmount = Money.of(amountInEuro, "EUR");
MonetaryAmountFormat formatter = MonetaryFormats.getAmountFormat(AmountFormatQueryBuilder.of(Locale.GERMANY)
.set(CurrencyStyle.SYMBOL)
.set("pattern", customPattern)
.build());
System.out.println(minDeliveryAmount);
答案 9 :(得分:-1)
printf也有效。
示例:
double anyNumber = 100; printf(“值为%4.2f”,anyNumber);
输出:
值为100.00
4.2表示强制数字在小数点后有两位数。 4控制小数点右边的位数。