我有要求根據區域設置值。我會的語言環境或者en_US
或fr_FR
貨幣格式化加拿大英語和法語
String locale = object.getLocale(); //
然後根據語言環境,我需要定義的貨幣。我需要的貨幣格式在下面定義。
Language Example Notes
Canadian French 123.456.789,99 $ symbol is a suffix,'comma' for decimal
Canadian English $123,456,789.99 symbol is a prefix,'dot' for decimal
目前我有表單屬性,我直接在我的java類中設置值。
...
Form form = new Form();
// Stub data for generating a graph.
formBean.setCurrOne("123.54");
formBean.setCurrTwo("456.33");
....//before I set those attributes I need to place a check
// for locale and format the currency accordingly.
你能幫我一下格式嗎?貨幣格式中的差異爲,
和.
。
可以這樣使用'org.springframework.format.number.CurrencyFormatter '任何例如做些什麼呢? – 2011-12-28 05:49:37