jsp頁面上讀取MySQL資料庫datetime時間顯示問題

來源:互聯網
上載者:User

標籤:格式   efi   而且   prefix   logs   .com   new   value   tar   

mysql資料庫中時間欄位選用了datetime,如果通過java實現在jsp頁面上時間顯示為"年-月-日  時:分"等格式,那麼如下代碼就會有不同的結果!

實體類中兩個變數:

    private Timestamp createDate;// 建立時間    private Date modifyDate;// 修改時間

介面實作類別中給兩個變數賦值:

    detail.setCreateDate(rs.getTimestamp("createDate"));    detail.setModifyDate(rs.getDate("modifyDate"));

通過servlet調用後代碼如下:

    //long time = new Date().getTime();    //Timestamp timestamp = new Timestamp(time);    //comment.setCreateDate(timestamp);
   comment.setCreateDate(new Timestamp(new Date().getTime()));//與上面三行等價
comment.setModifyDate(new Date());

在jsp頁面上:

<!-- 引入jstl標籤庫 --><%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %><td class="center"><fmt:formatDate value="${d.createDate}" pattern="yyyy-MM-dd hh:mm"/></td><td class="center"><fmt:formatDate value="${c.modifyDate}" pattern="yyyy-MM-dd HH:mm:ss"/></td>

那麼createDate欄位能按格式輸出在jsp頁面上,而modifyDate只顯示年月日(即使設定了格式也沒用!)。hh,變成大寫HH就是24小時制。月份的mm必須大寫,小寫話顯示的是分鐘數。

因此,如果想要在jsp頁面自訂格式輸出日期,而且資料庫是datetime,那麼java實體類中要使用Timestamp作為變數的傳回型別,這樣就可以實現需求了!

http://blog.sina.com.cn/s/blog_6ac4b8d701016twf.html

jsp頁面上讀取MySQL資料庫datetime時間顯示問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.