decimal até 6 lugares em java

double num = 1.34567;
System.out.format("%.4f", num);
Faithful Finch