<bdo id='9Zvp0'></bdo><ul id='9Zvp0'></ul>
      <tfoot id='9Zvp0'></tfoot>
      <legend id='9Zvp0'><style id='9Zvp0'><dir id='9Zvp0'><q id='9Zvp0'></q></dir></style></legend>
      <i id='9Zvp0'><tr id='9Zvp0'><dt id='9Zvp0'><q id='9Zvp0'><span id='9Zvp0'><b id='9Zvp0'><form id='9Zvp0'><ins id='9Zvp0'></ins><ul id='9Zvp0'></ul><sub id='9Zvp0'></sub></form><legend id='9Zvp0'></legend><bdo id='9Zvp0'><pre id='9Zvp0'><center id='9Zvp0'></center></pre></bdo></b><th id='9Zvp0'></th></span></q></dt></tr></i><div id='9Zvp0'><tfoot id='9Zvp0'></tfoot><dl id='9Zvp0'><fieldset id='9Zvp0'></fieldset></dl></div>

        <small id='9Zvp0'></small><noframes id='9Zvp0'>

      1. 格式,Java 中双精度和整数的 2 位小数和 0

        时间:2023-09-29

        • <legend id='9RtTM'><style id='9RtTM'><dir id='9RtTM'><q id='9RtTM'></q></dir></style></legend>

            <bdo id='9RtTM'></bdo><ul id='9RtTM'></ul>

                <tbody id='9RtTM'></tbody>
              1. <tfoot id='9RtTM'></tfoot>

                  <small id='9RtTM'></small><noframes id='9RtTM'>

                  <i id='9RtTM'><tr id='9RtTM'><dt id='9RtTM'><q id='9RtTM'><span id='9RtTM'><b id='9RtTM'><form id='9RtTM'><ins id='9RtTM'></ins><ul id='9RtTM'></ul><sub id='9RtTM'></sub></form><legend id='9RtTM'></legend><bdo id='9RtTM'><pre id='9RtTM'><center id='9RtTM'></center></pre></bdo></b><th id='9RtTM'></th></span></q></dt></tr></i><div id='9RtTM'><tfoot id='9RtTM'></tfoot><dl id='9RtTM'><fieldset id='9RtTM'></fieldset></dl></div>
                • 本文介绍了格式,Java 中双精度和整数的 2 位小数和 0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  如果它有分数,我正在尝试将双精度格式化为精确的 2 位小数,否则使用 DecimalFormat 将其截断

                  I am trying to format a double to exact 2 decimal places if it has fraction, and cut it off otherwise using DecimalFormat

                  所以,我想实现下一个结果:

                  So, I'd like to achieve next results:

                  100.123 -> 100.12
                  100.12  -> 100.12
                  100.1   -> 100.10
                  100     -> 100
                  

                  变体 #1

                  DecimalFormat("#,##0.00")
                  
                  100.1 -> 100.10
                  but
                  100   -> 100.00
                  

                  变体 #2

                  DecimalFormat("#,##0.##")
                  
                  100   -> 100
                  but
                  100.1 -> 100.1
                  

                  有什么想法在我的情况下选择什么模式?

                  Have any ideas what pattern to choose in my case?

                  推荐答案

                  我达到的唯一解决方案是使用这里提到的 if 语句:https://stackoverflow.com/a/39268176/6619441

                  The only solution i reached is to use if statement like was mentioned here: https://stackoverflow.com/a/39268176/6619441

                  public static boolean isInteger(BigDecimal bigDecimal) {
                      int intVal = bigDecimal.intValue();
                      return bigDecimal.compareTo(new BigDecimal(intVal)) == 0;
                  }
                  
                  public static String myFormat(BigDecimal bigDecimal) {
                      String formatPattern = isInteger(bigDecimal) ? "#,##0" : "#,##0.00";
                      return new DecimalFormat(formatPattern).format(bigDecimal);
                  }
                  

                  测试

                  myFormat(new BigDecimal("100"));   // 100
                  myFormat(new BigDecimal("100.1")); // 100.10
                  

                  如果有人知道更优雅的方式,请分享!

                  If someone knows more elegant way, please share it!

                  这篇关于格式,Java 中双精度和整数的 2 位小数和 0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:用逗号格式化 JTable 列单元格中的整数 下一篇:日期格式不起作用?

                  相关文章

                  最新文章

                • <small id='1lSBW'></small><noframes id='1lSBW'>

                • <tfoot id='1lSBW'></tfoot>

                  <legend id='1lSBW'><style id='1lSBW'><dir id='1lSBW'><q id='1lSBW'></q></dir></style></legend>

                    • <bdo id='1lSBW'></bdo><ul id='1lSBW'></ul>
                    <i id='1lSBW'><tr id='1lSBW'><dt id='1lSBW'><q id='1lSBW'><span id='1lSBW'><b id='1lSBW'><form id='1lSBW'><ins id='1lSBW'></ins><ul id='1lSBW'></ul><sub id='1lSBW'></sub></form><legend id='1lSBW'></legend><bdo id='1lSBW'><pre id='1lSBW'><center id='1lSBW'></center></pre></bdo></b><th id='1lSBW'></th></span></q></dt></tr></i><div id='1lSBW'><tfoot id='1lSBW'></tfoot><dl id='1lSBW'><fieldset id='1lSBW'></fieldset></dl></div>