FileDocCategorySizeDatePackage
Currency.javaAPI DocExample242Tue Dec 12 18:59:36 GMT 2000None

Currency.java

import java.text.NumberFormat;
import java.util.*;

public class Currency {
    public static String format(double d, Locale locale) {
        NumberFormat nf = NumberFormat.getCurrencyInstance(locale);
        return nf.format(d);
    }
}