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
Normally you can use piece of code below, but not for j2me.
BigDecimal.valueOf(doubleVariable)