클라이언트 ip, 요청 정보길이 요청정보 인코딩, 요청정보 컨텐트 타입, 용어정보 프로토콜, 요청정보 전송 방식, 요청 URL, 컨텍스트 경로, 서버이름, 서버 포트 의 내용을 확인할 수 있습니다
(Remote Addr, Content Length, Character Encoding, Content Type, Protocol, Method, Request URL, Context Path, Server Name, Server Port)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</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>
컨텍스트 경로 = <%= request.getContextPath() %> <br>
서버이름 = <%= request.getServerName() %> <br>
서버포트 = <%= request.getServerPort() %> <br>
------------------
<br>
<%
java.util.Enumeration names = request.getHeaderNames();
while (names.hasMoreElements()) {
String name = (String)names.nextElement();
out.println(name+" := ["+request.getHeader(name) + "]<br/>");
}
%>
<br/>
ip : <%= request.getRemoteAddr()%> <br/>
<br/>
</body>
</html>
'보물창고 > Programming' 카테고리의 다른 글
파이썬과 에디트 플러스 설치시 참고한 사이트 (Python, editplus) (0) | 2011.04.12 |
---|---|
WxGladeTutorial (파이썬 GUI 툴 튜토리얼, 함수, 메소드, API, methods) (2) | 2011.04.06 |
html 버튼 태그 정리된 곳 (0) | 2011.03.30 |
request 헤더 정보 출력 jsp (accept, accept-language, cache-control, accept-encoding,user-agent, host, connection, cookie) (0) | 2011.03.30 |
자바 예외 처리 java Exception (0) | 2011.03.16 |
ERROR: JDWP Unable to get JNI 1.2 environment, jvm->GetEnv() return code = -2 (0) | 2011.03.16 |
error C2533: 'Sum::{ctor}' : 생성자에서 반환 형식을 사용할 수 없습니다. (0) | 2011.03.06 |
'cout' : 선언되지 않은 식별자입니다. (0) | 2011.03.02 |