Skip to content

Instantly share code, notes, and snippets.

@chrisjyoon
Last active February 23, 2016 01:02
Show Gist options
  • Select an option

  • Save chrisjyoon/f31f7a799a85f7d7526c to your computer and use it in GitHub Desktop.

Select an option

Save chrisjyoon/f31f7a799a85f7d7526c to your computer and use it in GitHub Desktop.

Revisions

  1. chrisjyoon revised this gist Feb 23, 2016. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion gistfile1.txt
    Original 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);
  2. chrisjyoon created this gist Feb 4, 2016.
    4 changes: 4 additions & 0 deletions gistfile1.txt
    Original 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);