Here you can find the source of twoDecimalDoubleFormatter(double number)
public static String twoDecimalDoubleFormatter(double number)
//package com.java2s; public class Main { public static String twoDecimalDoubleFormatter(double number) { return String.format("%.2f", number); }// w ww.ja v a 2 s . c o m }