How do I format a date in a JSP page?

Category: taglib / jstl, viewed: 13K time(s).

This example show how to format date in JSP using format tag library.

<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<html
<head>
</head>

<body>
    <jsp:useBean id="date" class="java.util.Date"/>    
    Today is: <fmt:formatDate value="${date}" type="date" pattern="dd-MMM-yyyy"/>
</body>
<html>
Powered by Disqus