vote up 1 vote down star

Hello all,

I'm new to Java and trying to take a BigDecimal (for example 99999999.99) and convert it to a string but without the decimal place and trailing numbers. Also, I don't want commas in the number and rounding is not needed.

I've tried:

Math.Truncate(number)

but BigDecimal is not supported.

Any ideas?

Thanks very much.

flag

3 Answers

vote up 3 vote down check

Try number.toBigInteger().toString()

link|flag
Perfect, thanks. – David Belanger Aug 22 at 23:26
vote up 1 vote down

BigDecimal without fractions is BigInteger. Why don't you just use BigInteger?

link|flag
vote up 1 vote down

Use this.

BigDecimal truncated= number.setScale(0,BigDecimal.ROUND_DOWN);
link|flag

Your Answer

Get an OpenID
or

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