Request 기본 객체의 파라미터 읽기 메서드
<input type="text"> ==> 입력 값이 없이 전송 되면 name="" 빈문자열로 인식
<input type="checkbox"> ==> 선택하지 않으면 null값임 parametername 전송 못함
<input type="radio">
<select>
get 방식으로 바꿔서 테스트
데이터를 입력해서 전송할 경우
http://localhost:8080/chap03/viewParameter.jsp?
name=%ED%99%8D%EA%B8%B8%EB%8F%99&
address=%EC%84%9C%EC%9A%B8%EC%8B%9C&
pet=dog&
pet=pig
데이터 입력없이 전송할경우 text 인경우에만 빈문자열로 전달
http://localhost:8080/chap03/viewParameter.jsp?
name=&
address=
<%@ 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> 폼에 데이터를 입력한 후[전송] 버튼을 클릭하세요 <form action="/chap03/viewParameter.jsp" method="post"> 이름 : <input type="text" name="name" size="10"><br/> 주소 : <input type="text" name="address" size="30"><br/> 좋아하는 동물 <input type="checkbox" name="pet" value="dog">강아지 <input type="checkbox" name="pet" value="cat">고양이 <input type="checkbox" name="pet" value="pig">돼지 <br/> <input type="submit" value="전송"> </form> </body> </html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="java.util.Enumeration" %> <%@ page import="java.util.Map" %> <% request.setCharacterEncoding("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> <b>request.getParameeter() 메서도 사용</b><br/> name 피라미터 = <%= request.getParameter("name") %> <br/> address 피라미터 = <%= request.getParameter("address") %> <p> <b>request.getParameterValues() 메서드 사용</b><br/> <% String[] values=request.getParameterValues("pet"); if(values != null){ for (int i=0;i<values.length; i++){ %> <%= values[i] %> <% } } %> <p> <b>request.getParameterNames() 메서드 사용</b><br/> <% Enumeration paramEnum = request.getParameterNames(); while(paramEnum.hasMoreElements()){ String name= (String)paramEnum.nextElement(); %> <%= name %> <%} %> <p> <b>request.getParameterMap()메서드 사용</b><br/> <% Map parameterMap = request.getParameterMap(); String[] nameParam = (String[])parameterMap.get("name"); if(nameParam != null){ %> name = <%= nameParam[0] %> <%}%> </body> </html>
'JSP > 기본(Oracle)' 카테고리의 다른 글
request 기본 객체의 파라미터 읽기 메서드 (0) | 2012.05.30 |
---|---|
parameter (0) | 2012.05.30 |
JSP 클라이언트 및 서버 정보 (0) | 2012.05.30 |
JSP Calendar 클래스 사용, URL/URI의 구분 (0) | 2012.05.30 |
JSP 배열의 내용 출력 (0) | 2012.05.30 |