자바/실무 유용한 것!
통화 포맷 / java 원단위/krw
은은하게미친자
2024. 6. 17. 15:12
728x90
NumberFormat currencyFormat = NumberFormat.getCurrencyInstance(Locale.KOREA);
for (Map product1 : catelist){
double price1 = product1.getDouble("salePrice");
String formattedAmount = currencyFormat.format(price1)
.replaceAll(currencyFormat.getCurrency().getSymbol(), "");;
product1.put("unitconversion", formattedAmount);
}
728x90