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

        <small id='01alP'></small><noframes id='01alP'>

        • <bdo id='01alP'></bdo><ul id='01alP'></ul>
      1. <legend id='01alP'><style id='01alP'><dir id='01alP'><q id='01alP'></q></dir></style></legend>

        SimpleDateFormat 上的 java HH:mm 和 hh:mm 之间的区别

        时间:2023-09-30
        <legend id='i7xr5'><style id='i7xr5'><dir id='i7xr5'><q id='i7xr5'></q></dir></style></legend>
        1. <small id='i7xr5'></small><noframes id='i7xr5'>

          • <tfoot id='i7xr5'></tfoot>

              <tbody id='i7xr5'></tbody>

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

                  本文介绍了SimpleDateFormat 上的 java HH:mm 和 hh:mm 之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  kk:mm、HH:mm 和 hh:mm 格式有什么区别??

                  Whats the difference between kk:mm, HH:mm and hh:mm formats ??

                      SimpleDateFormat broken = new SimpleDateFormat("kk:mm:ss");
                      broken.setTimeZone(TimeZone.getTimeZone("Etc/UTC"));
                      SimpleDateFormat working = new SimpleDateFormat("HH:mm:ss");
                      working.setTimeZone(TimeZone.getTimeZone("Etc/UTC"));
                      SimpleDateFormat working2 = new SimpleDateFormat("hh:mm:ss");
                      working.setTimeZone(TimeZone.getTimeZone("Etc/UTC"));
                  
                      System.out.println(broken.format(epoch));
                      System.out.println(working.format(epoch));
                      System.out.println(working2.format(epoch));
                  

                  打印:

                  24:00:00
                  00:00:00
                  05:30:00
                  

                  推荐答案

                  kk: (01-24) 看起来像 01, 02..24.

                  kk: (01-24) will look like 01, 02..24.

                  HH:(00-23) 看起来像 00, 01..23.

                  HH:(00-23) will look like 00, 01..23.

                  hh:(上午/下午的 01-12)看起来像 01、02..12.

                  hh:(01-12 in AM/PM) will look like 01, 02..12.

                  所以最后的打印输出 (working2) 有点奇怪.应该说 12:00:00(如果你设置 working2 时区和格式,(正如 kdagli 指出的那样)你不是)

                  so the last printout (working2) is a bit weird. It should say 12:00:00 (edit: if you were setting the working2 timezone and format, which (as kdagli pointed out) you are not)

                  这篇关于SimpleDateFormat 上的 java HH:mm 和 hh:mm 之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何在 Kivy 中将 android.bluetooth.socket 输入流转换为 下一篇:java DateTimeFormatterBuilder 在测试时间失败

                  相关文章

                  最新文章

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

                      <legend id='pZrsF'><style id='pZrsF'><dir id='pZrsF'><q id='pZrsF'></q></dir></style></legend>

                        <bdo id='pZrsF'></bdo><ul id='pZrsF'></ul>

                    1. <small id='pZrsF'></small><noframes id='pZrsF'>