Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public static String setsymbol(BigDecimal data, String currency_symbol)
  2. {
  3. NumberFormat format = NumberFormat.getCurrencyInstance(Locale.ENGLISH);
  4. format.setCurrency(Currency.getInstance(currency_symbol));
  5. String result=data+" "+" دينار";
  6. return result;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement