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
Have a look at this article: Converting Double to String without E notation
You can make use of the [NumberFormat][2]
or [DecimalFormat][3]
class to acheive what you are looking for.
Here is the code:
NumberFormat f = NumberFormat.getInstance();
f.setGroupingUsed(false);
String refinedNumber = f.format(doubleVariable);