<bdo id='xgSGB'></bdo><ul id='xgSGB'></ul>
    <legend id='xgSGB'><style id='xgSGB'><dir id='xgSGB'><q id='xgSGB'></q></dir></style></legend>

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

      <tfoot id='xgSGB'></tfoot>
      <i id='xgSGB'><tr id='xgSGB'><dt id='xgSGB'><q id='xgSGB'><span id='xgSGB'><b id='xgSGB'><form id='xgSGB'><ins id='xgSGB'></ins><ul id='xgSGB'></ul><sub id='xgSGB'></sub></form><legend id='xgSGB'></legend><bdo id='xgSGB'><pre id='xgSGB'><center id='xgSGB'></center></pre></bdo></b><th id='xgSGB'></th></span></q></dt></tr></i><div id='xgSGB'><tfoot id='xgSGB'></tfoot><dl id='xgSGB'><fieldset id='xgSGB'></fieldset></dl></div>
    2. Java 时间戳 - 如何创建日期为 23/09/2007 的时间戳

      时间:2023-07-27

        <small id='289Ks'></small><noframes id='289Ks'>

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

                <bdo id='289Ks'></bdo><ul id='289Ks'></ul>
                本文介绍了Java 时间戳 - 如何创建日期为 23/09/2007 的时间戳?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                如何创建日期为 23/09/2007 的时间戳?

                How can I create a Timestamp with the date 23/09/2007?

                推荐答案

                通过 Timestamp,我想你的意思是 java.sql.Timestamp.你会注意到这个类有一个接受 long 参数的构造函数.您可以使用 DateFormat 类对其进行解析:

                By Timestamp, I presume you mean java.sql.Timestamp. You will notice that this class has a constructor that accepts a long argument. You can parse this using the DateFormat class:

                DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
                Date date = dateFormat.parse("23/09/2007");
                long time = date.getTime();
                new Timestamp(time);
                

                这篇关于Java 时间戳 - 如何创建日期为 23/09/2007 的时间戳?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:将 LocalDate 转换为 LocalDateTime 或 java.sql.Timestamp 下一篇:我如何反序列化以杰克逊为单位的时间戳?

                相关文章

                最新文章

                <legend id='SJ1l0'><style id='SJ1l0'><dir id='SJ1l0'><q id='SJ1l0'></q></dir></style></legend>
                  <bdo id='SJ1l0'></bdo><ul id='SJ1l0'></ul>
                <tfoot id='SJ1l0'></tfoot>
                1. <small id='SJ1l0'></small><noframes id='SJ1l0'>

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