로캘에 따라 값을 설정해야합니다. 나도 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
현재 자바 클래스의 값을 설정하는 양식 속성이 있습니다.
...
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 '어떤 예를 사용하여 수행 할 수 있습니다 :)? –