sp中/el表達式中將后台傳來的時間戳格式化為年月日時分秒
1.引入相關標簽庫
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
2.在jsp中執行轉換
<fmt:formatDate value="${var.CREATETIME}" pattern="yyyy-MM-dd HH:mm:ss"/>