i have got such part of the code:
double double1 = 0.000112344;
String string1 = "0.000112344";
System.out.println(String.valueOf(double1) + " : "+string1);
results:
1.12344E-4 : 0.000112344
The question is, how can i parse double1 to string that will show me 0.000112344?