<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.util.*" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<c:set var="date" value="<%=new Date() %>" />
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSTL 포매팅 라이브러리 : formatData 실습</title>
</head>
<body>
[오늘의 날짜] <fmt:formatDate value="${date}" /><br>
[현재의 시각] <fmt:formatDate value="${date}" type="time"/><br>
</body>
</html>
'JAVA > JSP & Servlet' 카테고리의 다른 글
JSTL [Formatting 라이브러리] : formatNumber (0) | 2013.03.26 |
---|---|
JSTL [Formatting 라이브러리] : formatData[pattern] (0) | 2013.03.26 |
JSTL [Core 라이브러리] : redirect (0) | 2013.03.26 |
JSTL [Core 라이브러리] : import / url (0) | 2013.03.26 |
JSTL [Core 라이브러리] : forToken (0) | 2013.03.26 |