I have a double value . I want to store it in String with out E notation (in J2ME)
Example
Double value 6.887578324E9 Want to show as 6887578342
You can use Java Formatter, just specify how many decimals do you want with the string.
Formatter
E.g. a double converted to a number with one decimal:
Formatter format = new Formatter(); String mystring = format.formatNumber(DOUBLENUMBERVARIABLE,1); System.out.println(mystring );