I have a GWT project in which I need to manually specify currency, number and datetime formats. These customizations include specifying the currency symbols, grouping seperator, decimal seperator, negative number formats etc. What would be the best way to accomplish this?

Should I use the GWT NumberFormat class? NumberFormat makes extensive use of the GWT internationalization constructs like the Constants interface etc. If you therefore specify a custom number format mask, it will still look at the current locale and use those monetary symbols, decimal symol and thousand separators, as is specified in the late-bound and internationalized 'NumberFormat' instance.

My question is: how would you accomplish this? Would you re-implement NumberFormat's functionality? Would you derive from it and use the protected constructor and pass it in some kind of custom NumberConstants instance that you created yourself? How about getting the i18n NumberConstants instance, and using that to populate your own instance and override only what you want?

How would you approach this problem?

link|improve this question

76% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I have used NumberFormat.getFormat(String format) for custom currency formatting (removing "US" before the $ sign).

In my application I put the result into public constant. I have stored the "format" argument in i18n resource bundle as well as all UI specific strings.

link|improve this answer
I ended up doing something similar. Had to have all kinds of weird hacks but it works ok now. – Pieter Breed Aug 28 '09 at 10:09
feedback
public class MyNumberFormat extends NumberFormat{

    private static CurrencyCodeMapConstants currencyCodeMapConstants = GWT.create(CurrencyCodeMapConstants.class);

    protected MyNumberFormat(String pattern, CurrencyData cdata,
            boolean userSuppliedPattern) {
        super(pattern, cdata, userSuppliedPattern);     
    }

    public static NumberFormat getCurrencyFormat(String currencyCode) {     
        return new MyNumberFormat(defaultNumberConstants.currencyPattern(),
            lookupCurrency(currencyCode), false);
      }

      private static CurrencyData lookupCurrency(String currencyCode) {
        CurrencyData currencyData = CurrencyList.get().lookup(currencyCode);

        Map currencyMap = currencyCodeMapConstants.currencyMap();       

        String code = currencyData.getCurrencyCode();
        //String symbol = currencyData.getCurrencySymbol();
        String symbol = currencyMap.get(currencyCode);
        int fractionDigits = currencyData.getDefaultFractionDigits();
        String portableSymbol = currencyData.getPortableCurrencySymbol();       

        return toCurrencyData(code, symbol, fractionDigits, portableSymbol);
      }

      public static native CurrencyData toCurrencyData(String code, String symbol, int fractionDigits, String portableSymbol) /*-{
        return [ code, symbol, fractionDigits, portableSymbol ];
      }-*/;
}

I could use in GXT grid

        column = new ColumnConfig("precioventa", constants.modeloPrendaPrecioVenta(), 100);
        column.setAlignment(HorizontalAlignment.RIGHT);        
        column.setNumberFormat(MyNumberFormat.getCurrencyFormat("PEN"));        
        columns.add(column);
link|improve this answer
Would you like to explain why this works, what it's doing differently? – Pieter Breed Aug 10 '11 at 8:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.