Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to convert from float to bigDecimal in java?

share|improve this question

6 Answers

BigDecimal value = new BigDecimal(Float.toString(123.4f));

From the javadocs, the string constructor is generally the preferred way to convert a float into a BigDecimal, as it doesn't suffer from the unpredictability of the BigDecimal(double) constructor.

Quote from the docs:

Note: For values other float and double NaN and ±Infinity, this constructor is compatible with the values returned by Float.toString(float) and Double.toString(double). This is generally the preferred way to convert a float or double into a BigDecimal, as it doesn't suffer from the unpredictability of the BigDecimal(double) constructor.

share|improve this answer
2  
But converting a float to a String explicitly doesn't help you solve the unpredictability automatically - you need to take care to format the value correctly (rounding etc.). – Jesper Sep 30 '10 at 8:58

There are two ways:

First, the recommended way:

float f = 0.2f;
BigDecimal bd = new BigDecimal(f);

but if you print the big decimal it displays 0.20000000298023224, which might not satisfy the needs of your program.

Another way:

float f = 0.2f;
BigDecimal bd = new BigDecimal(String.valueOf(f));

and if you print the big decimal it displays 0.2

share|improve this answer

For a precision of 3 digits after the decimal point:

BigDecimal value = new BigDecimal(f,
        new MathContext(3, RoundingMode.HALF_EVEN));
share|improve this answer
new BigDecimal(myfloat)
share|improve this answer
There is no float constructor, this is automagically casting to a double, and the double constructor is not safe – Alex Nov 8 '12 at 16:36

Converting from float to BigDecimal, in other words: casting? impossible. But you can create an instance of BigDecimal that represents the same fractional value like the float value:

BigDecimal number = new BigDecimal(floatValue);
share|improve this answer

Use the float constructor:

float f = 10.0f;
BigDecimal b = new BigDecimal(f);
share|improve this answer
There is no float constructor, this is automagically casting to a double, and the double constructor is not safe – Alex Nov 8 '12 at 16:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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