double d = 3.1415926;String result = String.format("%.2f", d);( %.2f %. 表示 小数点前任意位数 2 表示两位小数 格式后的结果为f 表示浮点型。)