Is it the display of the Double you want to change(ie when you print it) or the value of the Double? That is you want the value of the Double to be:136546.21000000 ie all zeros after the .21
A way might be to multiple the value by 100, convert to long and then convert to Double and divide by 100. For example:
double d = 1234.21345666;
d = d * 100.0;
long dI = (long)d;
double e = ((double) dI)/ 100.0;
System.out.println("d=" + d + ", e=" + e); //d=123421.34566600001, e=1234.21