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

<small id='wlyhV'></small><noframes id='wlyhV'>

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

      1. <tfoot id='wlyhV'></tfoot>

        将字符串转换为上午/下午格式的日期和时间

        时间:2023-07-26
        <i id='pHH0L'><tr id='pHH0L'><dt id='pHH0L'><q id='pHH0L'><span id='pHH0L'><b id='pHH0L'><form id='pHH0L'><ins id='pHH0L'></ins><ul id='pHH0L'></ul><sub id='pHH0L'></sub></form><legend id='pHH0L'></legend><bdo id='pHH0L'><pre id='pHH0L'><center id='pHH0L'></center></pre></bdo></b><th id='pHH0L'></th></span></q></dt></tr></i><div id='pHH0L'><tfoot id='pHH0L'></tfoot><dl id='pHH0L'><fieldset id='pHH0L'></fieldset></dl></div>

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

                <tfoot id='pHH0L'></tfoot>
                • <bdo id='pHH0L'></bdo><ul id='pHH0L'></ul>
                  <legend id='pHH0L'><style id='pHH0L'><dir id='pHH0L'><q id='pHH0L'></q></dir></style></legend>
                    <tbody id='pHH0L'></tbody>
                  本文介绍了将字符串转换为上午/下午格式的日期和时间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                   string : 2014-04-25 17:03:13
                  

                  使用 SimpleDateFormat 格式化就够了?或者否则我会转向任何新的 API?

                  using SimpleDateFormat is enough to format? or otherwise i will shift to any new API?

                  Date date = new Date(string);
                  DateFormat dateFormat = new SimpleDateFormat ("yyyy-MM-dd");
                  out.println( dateFormat.format (date));
                  

                  我的预期结果是(印度区):

                  My expected result is (India zone):

                  Date : 25-04-2014
                  Time : 05:03 PM
                  

                  推荐答案

                  记住 Date 对象没有固有格式,你需要两个 DateFormat 对象来产生你想要的结果seek - 一个解析,另一个格式化:

                  Remembering that Date objects have no inherent format, you need two DateFormat objects to produce the result you seek - one to parse and another to format:

                  String input = "2014-04-25 17:03:13";
                  DateFormat inputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
                  DateFormat outputFormat = new SimpleDateFormat("'Date : 'dd-MM-yyyy
                  'Time : 'KK:mm a");
                  System.out.println(outputFormat.format(inputFormat.parse(input)));
                  

                  输出:

                  Date : 25-04-2014
                  Time : 05:03 PM
                  

                  注意格式中引用的序列的使用,例如 "'Date : '",它在格式模式中被视为文字.

                  Note the use of quoted sequences in the format, such a "'Date : '", which is treated as a literal within the format pattern.

                  这篇关于将字符串转换为上午/下午格式的日期和时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Java MySQL Timestamp 时区问题 下一篇:mysql中UTC日期

                  相关文章

                  最新文章

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

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

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