반응형

<%@page import="java.util.Calendar"%>

<%@page import="java.util.*"%>

<%@ page language="java" contentType="text/html; charset=UTF-8"

pageEncoding="UTF-8"%>

<%@ page trimDirectiveWhitespaces="true" %>


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>현재 시간 출력</title>

</head>

<body>


<%

//자바 코드작성

Date now = new Date(113,0,1);

//GregorianCalender는 calendar 클래스로부터 상속 받았습니다.

Calendar cal = new GregorianCalendar(2013,0,1);


%>


<%= now %><br />

<%= cal %>


</body>

</html>

'Web개발 > JSP, Web' 카테고리의 다른 글

[JSP] 로그인 하기  (0) 2014.11.18
[JSP] dto 데이터의 값을 jsp에 가져오기  (0) 2014.11.18
[JSP] ArrayList 출력하기  (0) 2014.11.18
[JSP] request 출력하기  (0) 2014.11.18
[JSP] 파라미터 읽기 (Parameter)  (0) 2014.11.18

+ Recent posts