I have a double number like 223.45654543434 and I need to show it like "0.223x10E-3".
How can I do this in Java?
|
I have a double number like How can I do this in Java?
| |||||||||||||||||||||
feedback
|
|
From http://www.java-tips.org/java-se-tips/java.text/display-numbers-in-scientific-notation.html Copy/pasting because the page seems to be having issues ================= You can display numbers in scientific notation using java.text package. Specifically DecimalFormat class in java.text package can be used for this aim. The following example shows how to do this:
| |||||||
feedback
|
results in
which is the closest I get. more info : http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax | |||
|
feedback
|
|
Finally I do it by hand:
thanks to all :) | |||
|
feedback
|