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

JSP에서 응답 객체란 무엇입니까?

<시간/>

응답 객체는 javax.servlet.http.HttpServletResponse 객체의 인스턴스입니다. . 서버가 요청 객체를 생성하는 것처럼 클라이언트에 대한 응답을 나타내는 객체도 생성합니다.

응답 객체는 또한 새 HTTP 헤더 생성을 처리하는 인터페이스를 정의합니다. 이 객체를 통해 JSP 프로그래머는 새로운 쿠키나 날짜 스탬프, HTTP 상태 코드 등을 추가할 수 있습니다.

응답 객체 메소드는 서블릿 프로그램에서 HTTP 응답 헤더를 설정하는 데 사용할 수 있습니다. 이 개체는 서버 응답을 나타냅니다.

다음 예는 setIntHeader()를 사용합니다. 새로고침 설정 방법 디지털 시계를 시뮬레이션하는 헤더 -

<%@ page import = "java.io.*,java.util.*" %>
<html>
   <head>
      <title>Auto Refresh Header Example</title>
   </head>
   <body>
      <center>
         <h2>Auto Refresh Header Example</h2>
         <%
            // Set refresh, autoload time as 5 seconds
            response.setIntHeader("Refresh", 5);
            // Get current time
            Calendar calendar = new GregorianCalendar();
            String am_pm;
            int hour = calendar.get(Calendar.HOUR);
            int minute = calendar.get(Calendar.MINUTE);
            int second = calendar.get(Calendar.SECOND);
            if(calendar.get(Calendar.AM_PM) == 0)
               am_pm = "AM";
            else
               am_pm = "PM";
               String CT = hour+":"+ minute +":"+ second +" "+ am_pm;
               out.println("Current Time is: " + CT + "\n");
         %>
      </center>
   </body>
</html>

자동 새로 고침 헤더 예

Current Time is: 9:44:50 PM