I want to print a double value in Java without exponential form.
double dexp = 12345678; System.out.println(\"dexp: \"+dexp);
It shows this
My solution: String str = String.format ("%.0f", yourDouble);