반응형
// 화폐단위 숫자 세자리마다 쉼표넣기
public static String currentpoint(String result) {

DecimalFormatSymbols dfs = new DecimalFormatSymbols();
dfs.setGroupingSeparator(',');

DecimalFormat df = new DecimalFormat("###,###,###,###");
df.setDecimalFormatSymbols(dfs);

try {
double inputNum = Double.parseDouble(result);
result = df.format(inputNum).toString();
} catch (NumberFormatException e) {
// TODO: handle exception
}

return result;
}
반응형

WRITTEN BY
아카이시

,