I want to print a double value in Java without exponential form.
double dexp = 12345678; System.out.println(\"dexp: \"+dexp);
It shows this
This will work as long as your number is a whole number:
double dnexp = 12345678; System.out.println("dexp: " + (long)dexp);
If the double variable has precision after the decimal point it will truncate it.