Here you can find the source of decimalConversation(double amount)
public static String decimalConversation(double amount)
//package com.java2s; //License from project: Apache License import java.text.DecimalFormat; import java.text.NumberFormat; public class Main { public static String decimalConversation(double amount) { NumberFormat formatter = new DecimalFormat("#0.00"); return formatter.format(amount); }//from ww w .j av a 2 s . c o m }