반응형
SMALL
<%@ page contentType="text/html; charset=euc-kr" %>
<%@ page import="java.util.*, java.text.*" %>
<%
Date date = new Date();
SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd");
String strdate = simpleDate.format(date);
%>
보통의 JSP 페이지의 형태입니다.<br>
오늘 날짜는 <%= strdate%> 입니다.
<%
Calendar cal = Calendar.getInstance();
%>
<p>
오늘은
<%= cal.get(Calendar.YEAR) %>년
<%= cal.get(Calendar.MONTH) + 1 %>월
<%= cal.get(Calendar.DATE) %>일
입니다.
반응형
'Web Programing! > JAVA / JSP' 카테고리의 다른 글
[JSP] Servlet이란? (0) | 2011.07.31 |
---|---|
[jsp] 형변환하기 (0) | 2011.07.27 |
[JSP] 파라미터로 받은 YYYYMMDD 형태의 날짜가 유효한지 검사 (0) | 2011.07.11 |
[JAVA] 정규식표현을 사용한 URL에 자동링크 (0) | 2011.07.11 |
[JAVA] 개발자가 놓치기 쉬운 자바의 개념, 기본원리 (1) | 2011.07.11 |
[JSP] toFixed(x) 소수점이하 고정된 자릿수 유지하기. (0) | 2011.07.11 |
[jsp] poi사용시 cell공백 확인 (0) | 2011.07.05 |