-2
A
回答
4
的DecimalFormat的這個實例添加到您的方法的頂部:
DecimalFormat three = new DecimalFormat("#,##0.000"); // will display numbers separated by commas every three digits to the left of the decimal, and will round it to three decimal places. No more, no less.
// the three zeros after the decimal point above specify how many decimal places to be accurate to.
// the zero to the left of the decimal place above makes it so that numbers that start with "0." will display "0." vs just "." If you don't want the "0.", replace that 0 to the left of the decimal point with "#"
然後,調用實例 「三化」,並通過你的雙顯示時的值:
double PV = 154055.054847215;
display.setText(three.format(PV)); // displays 1,540,055.055
1
試試這個:
DecimalFormat formatter = new DecimalFormat("#,###.00");
System.out.println(formatter.format(PV));
1
String s = String.format(%,.2f, PV);
System.out.println(s);
相關問題
- 1. 如何使用java以印度盧比格式顯示數字
- 2. 如何使用JavaScript以特定格式顯示Date對象?
- 3. 以特定格式顯示MySQL數據
- 4. 如何顯示特定數字格式的字符串變量,如「#,0。##」
- 5. 如何使用java eclipse讀取excel頁面的特定表格
- 6. UILabels在數字格式如何顯示
- 7. 如何使用Java/Android在Eclipse中的LogCat中顯示int?
- 8. 如何以特定格式顯示txt文件中的數據
- 9. 自定義數字格式顯示0000.00
- 10. 如何在asp.net中顯示具有特定格式/格式的數據?
- 11. 如何,在顯示這些格式,數字的Android
- 12. 如何突出顯示Eclipse中的特定字詞
- 13. 在java的特定格式的Android
- 14. 時間特定格式的Android的Java
- 15. java顯示和使用printf格式化
- 16. 用oop顯示html格式的用戶特定數據php
- 17. C# - 以特定格式顯示時間
- 18. 特定格式的sql顯示
- 19. 以特定格式顯示日期
- 20. 如何使用CSS以自定義格式顯示錶格?
- 21. Java Android - CSVWriter用特定單元格計算數學公式
- 22. 如何讀取數字之後的特定字符使用Java Android的字符?
- 23. 如何使用displaytag顯示自定義貨幣格式?
- 24. 如何在java中使用DecimalFormat格式化帶有特殊字符的數字
- 25. 表格視圖數據以特定格式顯示?
- 26. 使用Access以特定格式顯示文件夾名稱
- 27. 如何使用android studio顯示特殊字符
- 28. 使用GIT顯示比特定格式的特定日期更舊的提交
- 29. 如何使用ls命令以特定格式顯示修改的時間
- 30. 如何在android中以表格格式顯示數據?