Last active
February 23, 2016 01:02
-
-
Save chrisjyoon/f31f7a799a85f7d7526c to your computer and use it in GitHub Desktop.
Revisions
-
chrisjyoon revised this gist
Feb 23, 2016 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ NumberFormat.getCurrencyInstance(Locale.US).format(org); NumberFormat.getCurrencyInstance(Locale.KOREA).format(org); Locale locale = new Locale("ko", "KR"); NumberFormat.getCurrencyInstance(locale).format(org); NumberFormat.getCurrencyInstance(Locale.getDefault()).format(org); -
chrisjyoon created this gist
Feb 4, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ NumberFormat.getCurrencyInstance(Locale.US).format(org); NumberFormat.getCurrencyInstance(Locale.KOREA).format(org); ... NumberFormat.getCurrencyInstance(Locale.getDefault()).format(org);