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 a string 0E-11 to 0.00000000000 in Java? I want to display the number in non scientific notations. I've tried looking at the number formatter in Java, however I need to specific the exact number of decimals I want but I will not always know. I simply want the number of decimal places as specificed by my original number.

share|improve this question

3 Answers

up vote 4 down vote accepted

I would use BigDecimal.Pass your string into it as a parameter and then use String.format to represent your newly created BigDecimal without scientific notation. Float or Double classes can be used too.

share|improve this answer

Apparently the correct answer is to user BigDecimal and retrieve the precision and scale numbers. Then use those numbers in the Formatter. Something similar like this:

BigDecimal bg = new BigDecimal(rs.getString(i));
Formatter fmt = new Formatter();
fmt.format("%." + bg.scale() + "f", bg);
buf.append( fmt);
share|improve this answer
This is exactly what I suggested :) – eugener Aug 4 '09 at 19:57
3  
Yes, Eugene, but the devil is in the details; working example code is usually more helpful than a description. For example, someone suggested I use EXEC on a stored procedure (in Oracle 10g). The idea was correct (used a stored procedure instead of a function), but the details (CALL vs. EXEC) were wrong. As Torvalds once said, "Show me the code." lkml.org/lkml/2000/8/25/132 – Dave Jarvis Aug 4 '09 at 21:08
1  
Are you joking? What kind of details do you need here? It is very simple already... the whole deal is about idea. :) – eugener Aug 4 '09 at 21:22

I haven't tried it, but java.text.NumberFormat might do what you want.

share|improve this answer

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.