java 數字轉爲千分符格式字符串,將千分符格式字符串反轉爲數字

int a = 2000;String str = NumberFormat.getIntegerInstance(Locale.getDefault()).format(a);     //轉爲千分符字符串System.out.println(str);try {    int b = NumberFormat.getIntegerInstance(Locale.getDefault()).parse(str).intValue();    //轉爲數字    System.out.println("" + b);} catch (ParseException e) {    e.printStackTrace();}
相關文章
相關標籤/搜索