JSP+MySql的時間處理

來源:互聯網
上載者:User

很久沒有用Mysql了,發現小小的時間問題也遇到不少麻煩,呵呵

所以總結一下:

第一種:

Date time= new java.sql.Date(new java.util.Date().getTime());

第二種:

java 用PreparedStatement來setDate,用問號的形式給日期問號賦值

pstmt.setTimestamp(8, new Timestamp(System.currentTimeMillis())); 

pstmt.setDate(1, new java.sql.Date(date1.getTime()));
pstmt.setDate(2, new java.sql.Date(date2.getTime()));


第三:

其實向mysql資料庫裡插入時間欄位也是很容易的,只要設定為java.util.Date類型後,以Hibernate的Pojo類對象為例,pojo.set(new java.util.Date());就可用了。

以下附錄在網上找到的相關資料:

Mysql 與 java 的時間類型
           MySql的時間類型有             Java中與之對應的時間類型
                 date                                              java.sql.Date
             Datetime                                       java.sql.Timestamp
            Timestamp                                     java.sql.Timestamp
            Time                                             java.sql.Time
            Year                                              java.sql.Date
於是便通過以下方式去實現:
           Date date = new Date();//獲得系統時間.
          String nowTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(date);//將時間格式轉換成符合Timestamp要求的格式.
          Timestamp goodsC_date = Timestamp.valueOf(nowTime);//把時間轉換

java.util.Date   是java.sql.Date的父類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.