Hi All ,
I am having trouble with a double number . I have a number in DB with 15 digits before decimal point and 3 digits after the decimal
I need to display it to user on GUI
When i convert it to
String then it is shown in exponential form
with some truncation .
I tried some statements with BigDecimal , DecimalFormat and
NumberFormat but no luck
Can anyone suggest how i can print this
ie
i have double d = 999999999999999.999;
When i print it i should get the same value .
Can anyone suggest some way ?
Thanks,
Shiva