DecimalFormat decimalFormat = new DecimalFormat("0.##");double l = 101; String format = decimalFormat.format(l / 100);System.out.println(format);