Computer >> 컴퓨터 >  >> 프로그램 작성 >> 프로그램 작성

JSP 페이지에서 현재 날짜와 시간을 인쇄하는 방법은 무엇입니까?

<시간/>

JSP 프로그램을 사용하면 현재 날짜와 시간을 매우 쉽게 얻을 수 있습니다. toString()과 함께 간단한 Date 객체를 사용할 수 있습니다. 다음과 같이 현재 날짜와 시간을 출력하는 방법 -

예시

<%@ page import = "java.io.*,java.util.*, javax.servlet.*" %>
<html>
   <head>
      <title>Display Current Date & Time</title>
   </head>
   <body>
      <center>
         <h1>Display Current Date & Time</h1>
      </center>
      <%
         Date date = new Date();
         out.print( "<h2 align = \"center\">" +date.toString()+"</h2>");
      %>
   </body>
</html>

이제 코드를 CurrentDate.jsp에 보관하겠습니다. 그런 다음 URL https://localhost:8080/CurrentDate.jsp를 사용하여 이 JSP를 호출합니다. . 다음 결과를 받게 됩니다 -

출력

Display Current Date & Time
Mon Jun 21 21:46:49 GMT+04:00 2010

URL https://localhost:8080/CurrentDate.jsp으로 페이지를 새로 고칩니다. . 새로 고침을 할 때마다 초 단위로 차이가 있음을 알 수 있습니다.