<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!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> 클라이언트 IP = <%=request.getRemoteAddr() %> <br/> 요청 정보 길이 = <%= request.getContentLength() %> <br/> 요청정보 인코딩 = <%= request.getCharacterEncoding() %> <br/> 요청정보 컨텐트 타입= <%=request.getContentType() %> <br/> 요청정보 프로토콜 = <%= request.getProtocol() %> <br/> 요청정보 전송방식 = <%= request.getMethod() %> <br/> 요청 URI = <%= request.getRequestURI() %><br/> 요청 URL = <%= request.getRequestURL() %> <br/> 컨텍스트 경로 = <%= request.getContextPath() %> <br/> 서버 이름 = <%= request.getServerName() %> <br/> 서버 포트 = <%= request.getServerPort() %> <br/> </body> </html>
※상대 편 컴퓨터로 들어가면 내가 클라이언트가 됨
'JSP > 기본(Oracle)' 카테고리의 다른 글
parameter (0) | 2012.05.30 |
---|---|
폼 생성 및 요청 파라미터 출력, Request 기본 객체의 파라미터 읽기 메서드 (0) | 2012.05.30 |
JSP Calendar 클래스 사용, URL/URI의 구분 (0) | 2012.05.30 |
JSP 배열의 내용 출력 (0) | 2012.05.30 |
JSP 메소드 선언 및 호출 (0) | 2012.05.30 |