반응형
public static String setPhoneNumber(String result) {
boolean flag = false;
if (result.startsWith("0"))
flag = true;
DecimalFormatSymbols dfs = new DecimalFormatSymbols();
dfs.setGroupingSeparator('-');
DecimalFormat df = new DecimalFormat("###,####,####");
df.setDecimalFormatSymbols(dfs);
try {
double inputNum = Double.parseDouble(result);
result = df.format(inputNum).toString();
if (flag) {
if (!result.equals("0"))
result = "0" + result;
}
} catch (NumberFormatException e) {
// TODO: handle exception
}
return result;
}
반응형
'안드로이드 개발' 카테고리의 다른 글
안드로이드 스튜디오 SVN연동 (1) | 2015.06.09 |
---|---|
안드로이드 날짜관련 펑션모음 (0) | 2015.06.09 |
안드로이드 숫자세자리마다 쉼표넣기 (0) | 2015.06.09 |
안드로이드 전화걸기, SMS발송 (0) | 2015.06.09 |
ANDROID STUDIO QR바코드스캐너구현 ZXing (0) | 2015.06.04 |
WRITTEN BY
,