java나 jsp파일에서 날짜를 형식대로 출력하는 소스입니다.
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@page import="java.util.Date" %>
<%@page import="java.text.SimpleDateFormat" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">
<head>
<title>TIME</title>
</head>
<body>
<%
Date now = new Date();
%>
<%=now %><br>
<%
SimpleDateFormat sf = new SimpleDateFormat("yyyyMMddHHmmss");
String today = sf.format(now);
%>
<%=today %><br>
<%
sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
today = sf.format(now);
%>
<%=today %><br>
<%
sf = new SimpleDateFormat("yyyy년MM월dd일 E요일 a hh:mm:ss");
today = sf.format(now);
%>
<%=today %><br>
</body>
</html>
'Java' 카테고리의 다른 글
전자정부 프레임워크 3.7 버전에서 오류 메세지 (0) | 2018.02.20 |
---|---|
mybatis foreach 구문 list 안에 map이 있는 경우 (0) | 2018.01.24 |
스프링 프로젝트 생성 후 샘플 코드 한글 깨짐 현상 (0) | 2017.09.18 |
Java was started but returned exit code=13 - 이클립스 실행시 에러 (0) | 2017.08.25 |
자바로 gmail 메일 서버를 이용해서 메일 보내기 (0) | 2017.08.18 |