jsp中/el表达式中将后台传来的时间戳格式化为年月日时分秒

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"/>

  

原文地址:https://www.cnblogs.com/han108/p/9397145.html