Java Money Format formatMoney(int dosh)

Here you can find the source of formatMoney(int dosh)

Description

format Money

License

Open Source License

Declaration

public static String formatMoney(int dosh) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static final String CURRENCY_SYMBOL = "$";

    public static String formatMoney(int dosh) {
        String ret = CURRENCY_SYMBOL + String.valueOf(dosh);
        return ret;
    }//from   w  w  w  .  j av  a2s  .com
}

Related

  1. formatMoney(BigDecimal money, Locale locale)
  2. formatMoney(BigDecimal value)
  3. formatMoney(double cents, Locale locale)
  4. formatMoney(double dtSource)
  5. formatMoney(double money, int scalar)
  6. formatMoney(Object str)
  7. formatMoney(String money)
  8. formatMoneyNoSymbol(int pennies)
  9. formatMoneyShort(int pennies)