vote up 1 vote down star

I was trying to make my own class for currencies using longs, but Apparently I should use BigDecimal (and then whenever I print it just add the $ sign before it). Could someone please get me started? What would be the best way to use BigDecimals for Dollar currencies, like making it at least but no more than 2 decimal places for the cents, etc. The api for BigDecimal is huge, and I don't know which methods to use. Also, BigDecimal has better precision, but isn't that all lost if it passes through a double? if I do new BigDecimal(24.99), how will it be different than using a double? Or should I use the constructor that uses a String instead?

EDIT: I decided to use BigDecimals, and then use:

private static final java.text.NumberFormat moneyt =
        java.text.NumberFormat.getCurrencyInstance();
{
    money.setRoundingMode(RoundingMode.HALF_EVEN);
}

and then whenever I display the BigDecimals, to use money.format(theBigDecimal). Is this alright? Should I have the BigDecimal rounding it too? Because then it doesn't get rounded before it does another operation.. if so, could you show me how? And how should I create the BigDecimals? new BigDecimal("24.99") ?

Well, after many comments to Vineet Reynolds (thanks for keeping coming back and answering), this is what I have decided. I use BigDecimals and a NumberFormat. Here is where I create the NumberFormat instance.

private static final NumberFormat money;
static {
    money = NumberFormat.getCurrencyInstance(Locale.CANADA);
    money.setRoundingMode(RoundingMode.HALF_EVEN);
}

Here is my BigDecimal:

private final BigDecimal price;

Whenever I want to display the price, or another BigDecimal that I got through calculations of price, I use:

money.format(price)

to get the String. Whenever I want to store the price, or a calculation from price, in a database or in a field or anywhere, I use (for a field):

myCalculatedResult = price.add(new BigDecimal("34.58")).setScale(2, RoundingMode.HALF_EVEN);

.. but I'm thinking now maybe I should not have the NumberFormat round, but when I want to display do this:

System.out.print(money.format(price.setScale(2, RoundingMode.HALF_EVEN);

That way to ensure the model and things displayed in the view are the same. I don't do:

price = price.setScale(2, RoundingMode.HALF_EVEN);

Because then it would always round to 2 decimal places and wouldn't be as precise in calculations.

So its all solved now, I guess. But is there any shortcut to typing calculatedResult.setScale(2, RoundingMode.HALF_EVEN) all the time? All I can think of is static importing HALF_EVEN...

EDIT: I've changed my mind a bit, I think if I store a value, I won't round it unless I have no more operations to do with it, e.g. if it was the final total that will be charged to someone. I will only round things at the end, or whenever necessary, and I will still use NumberFormat for the currency formatting, but since I always want rounding for display, I made a static method for display:

public static String moneyFormat(BigDecimal price) {
    return money.format(price.setScale(2, RoundingMode.HALF_EVEN));
}

So values stored in variables won't be rounded, and I'll use that method to display prices.

flag

Everything looks fine, but for one final thing - when you use setScale() on a BigDecimal instance, especially if you will use it for addition later, provide the rounding factor of n+1, where n is the number of significant digits. For instance, set a rounding factor of 3, for the following addition 0.043 + 0.043 will yield 0.09 instead of 0.08 (if you chose 2 significant digits for rounding/storage). – Vineet Reynolds Sep 1 at 22:19
In the previous example, if you chose 2 significant digits, and performed rounding (as an intermediate operation) before addition, you will get 0.04 + 0.04 = 0.08 – Vineet Reynolds Sep 1 at 22:21
Should my variable that stores the percentage to be removed from the price be a BigDecimal also? – Mk12 Sep 2 at 0:00

4 Answers

vote up 2 vote down check

Here are a few hints:

  1. Use BigDecimal for computations if you need the precision that it offers (Money values often need this).
  2. Use the NumberFormat class for display. This class will take care of localization issues for amounts in different currencies. However, it will take in only primitives; therefore, if you can accept the small change in accuracy due to transformation to a double, you could use this class.
  3. When using the NumberFormat class, use the scale() method on the BigDecimal instance to set the precision and the rounding method.

PS: In case you were wondering, BigDecimal is always better than double, when you have to represent money values in Java.

PPS:

Creating BigDecimal instances

This is fairly simple since BigDecimal provides constructors to take in primitive values, and String objects. You could use those, preferably the one taking the String object. For example,


BigDecimal modelVal = new BigDecimal("24.455");
BigDecimal displayVal = modelVal.setScale(2, RoundingMode.HALF_EVEN);

Displaying BigDecimal instances

You could use the setMinimumFractionDigits and setMaximumFractionDigits method calls to restrict the amount of data being displayed.


NumberFormat usdCostFormat = NumberFormat.getCurrencyInstance(Locale.US);
usdCostFormat.setMinimumFractionDigits( 1 );
usdCostFormat.setMaximumFractionDigits( 2 );
System.out.println( usdCostFormat.format(displayVal.doubleValue()) );
link|flag
2  
Agree especially on number 2. Keep the view (formatting for the display) separate from the model (BigDecimal). You can always write a custom java.text.Format to handle your specific data type. – Steve Kuo Sep 1 at 0:33
Don't you mean DecimalFormat, not NumberFormat? – Mk12 Sep 1 at 1:22
@Mk12, you can use either. DecimalFormat is to be used when you want more control over the formatting. It provides the applyPattern() method that NumberFormat does not. – Vineet Reynolds Sep 1 at 1:38
Oh, I guess NumberFormat works too. Just used getCurrencyInstance() and than setRoundMode to HALF_EVEN. – Mk12 Sep 1 at 1:38
Yes, it is getCurrencyInstance(Locale locale) that will help in localization. – Vineet Reynolds Sep 1 at 1:41
show 25 more comments
vote up 1 vote down

1) If you are limited to the double precision, one reason to use BigDecimals is to realize operations with the BigDecimals created from the doubles.

2) The BigDecimal consists of an arbitrary precision integer unscaled value and a non-negative 32-bit integer scale, while the double wraps a value of the primitive type double in an object. An object of type Double contains a single field whose type is double

3) It should make no difference

You should have no difficulties with the $ and precision. One way to do it is using System.out.printf

link|flag
vote up 0 vote down

Use BigDecimal.setScale(2, BigDecimal.ROUND_HALF_UP) when you want to round up to the 2 decimal points for cents. Be aware of rounding off error when you do calculations though. You need to be consistent when you will be doing the rounding of money value. Either do the rounding right at the end just once after all calculations are done, or apply rounding to each value before doing any calculations. Which one to use would depend on your business requirement, but generally, I think doing rounding right at the end seems to make a better sense to me.

Use a String when you construct BigDecimal for money value. If you use double, it will have a trailing floating point values at the end. This is due to computer architecture regarding how double/float values are represented in binary format.

link|flag
3  
Note that for financial apps, ROUND_HALF_EVEN is the most common rounding mode since it avoids bias. – Michael Borgwardt Aug 31 at 23:49
Good point about avoiding bias. Didn't know it worked to achieve that. – Vineet Reynolds Aug 31 at 23:54
@Michael: Thanks for the tip. I didn't know that. I always wondered how best deal with bias/cumulative errors. Learned something new today. :) – tim_wonil Sep 1 at 0:23
vote up 0 vote down

There is an extensive example of how to do this on javapractices.com. See in particular the Money class, which is meant to make monetary calculations simpler than using BigDecimal directly.

The design of this Money class is intended to make expressions more natural. For example:

if ( amount.lt(hundred) ) {
 cost = amount.times(price); 
}

The WEB4J tool has a similar class, called Decimal, which is a bit more polished than the Money class.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.