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?

link|improve this question

61% accept rate
12  
Putting "URGENT!!!!" in the question makes it less likely you'll get quick, useful answers, not more likely. I'm not saying it's right, it's just a peculiarity of human nature. – T.J. Crowder May 31 '10 at 16:39
5  
@TJ I think its partly that developers helping others out don't like being yelled at :) – Lerxst May 31 '10 at 16:42
4  
In proper scientific notation the number will be 2.23e-2, not 0.223e-3. – KennyTM May 31 '10 at 16:43
3  
You must be a very important person because your other posts are also URGENT – Strawberry May 31 '10 at 16:54
5  
VIP : Very Impatient Person :-) – Peter Tillemans May 31 '10 at 16:57
show 2 more comments
feedback

3 Answers

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:

import java.text.*;
import java.math.*;

public class TestScientific {

  public static void main(String args[]) {
     new TestScientific().doit();
  }

  public void doit() {
     NumberFormat formatter = new DecimalFormat();

     int maxinteger = Integer.MAX_VALUE;
     System.out.println(maxinteger);    // 2147483647

     formatter = new DecimalFormat("0.######E0");
     System.out.println(formatter.format(maxinteger)); // 2,147484E9

     formatter = new DecimalFormat("0.#####E0");
     System.out.println(formatter.format(maxinteger)); // 2.14748E9


     int mininteger = Integer.MIN_VALUE;
     System.out.println(mininteger);    // -2147483648

     formatter = new DecimalFormat("0.######E0");
     System.out.println(formatter.format(mininteger)); // -2.147484E9

     formatter = new DecimalFormat("0.#####E0");
     System.out.println(formatter.format(mininteger)); // -2.14748E9

     double d = 0.12345;
     formatter = new DecimalFormat("0.#####E0");
     System.out.println(formatter.format(d)); // 1.2345E-1

     formatter = new DecimalFormat("000000E0");
     System.out.println(formatter.format(d)); // 12345E-6
  }
}  
link|improve this answer
1  
"Copy/pasting because the page seems to be having issues" Also because SO should stand on its own, in case external references move, go away, etc. – T.J. Crowder May 31 '10 at 16:59
true enough, however i usually just c/p the really pertinent parts and then link to the original source for more detailed info. In this case, the original source is not working well, so I put it all in here. – Lerxst May 31 '10 at 17:04
feedback
    System.out.println(String.format("%6.3e",223.45654543434));

results in

    2.235e+02

which is the closest I get.

more info : http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html#syntax

link|improve this answer
feedback
up vote 0 down vote accepted

Finally I do it by hand:

public static String parseToCientificNotation(double valor) {
        int cont = 0;
        java.text.DecimalFormat DECIMAL_FORMATER = new java.text.DecimalFormat("0.##");
        while (((int) valor) != 0) {
            valor /= 10;
            cont++;
        }
        return DECIMAL_FORMATER.format(valor).replace(",", ".") + " x10^ -" + cont;
}

thanks to all :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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