반응형
// 화폐단위 숫자 세자리마다 쉼표넣기
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;
}
반응형
'안드로이드 개발' 카테고리의 다른 글
안드로이드 날짜관련 펑션모음 (0) | 2015.06.09 |
---|---|
안드로이드 전화번호 포맷설정 (0) | 2015.06.09 |
안드로이드 전화걸기, SMS발송 (0) | 2015.06.09 |
ANDROID STUDIO QR바코드스캐너구현 ZXing (0) | 2015.06.04 |
byte[]에서 Bitmap으로 변환, Bitmap 이미지회전 (0) | 2015.06.03 |
WRITTEN BY
,