package org.arpit.java2blog;
public class StringFromatformatDouble {
public static void main(String[] args) {
double d = 2.456534;
System.out.println("Double upto 2 decimal places: "+String.format("%.2f",d));
}
}
DecimalFormat df = new DecimalFormat("0.00");
//Don't forget you can use # instead of 0's to have
//a more flexible output
double pie = 3.14159265359;
System.out.println("double : " + pie);
System.out.println("double : " + df.format(pie));
//Prints 3.14