Here you can find the source of formatToTwoDecimalPlaces(String decimal)
public static final String formatToTwoDecimalPlaces(String decimal)
//package com.java2s; import java.text.DecimalFormat; import java.text.ParseException; public class Main { public static final DecimalFormat format = new DecimalFormat("0.00"); public static final String formatToTwoDecimalPlaces(String decimal) { try {//from w ww . j a va2 s .c o m return format.format(format.parse(decimal)); } catch (ParseException e) { return decimal; } } }