상세 컨텐츠

본문 제목

JSP 파라미터네임 받아오기

관리X 과거글

by 까먹기전에 2015. 2. 13. 15:34

본문

반응형

================a.jsp===================

<%@ page language="java" contentType="text/html; charset=EUC-KR"

pageEncoding="EUC-KR"%>



<html>

<body>

 

<form action="b.jsp" method="get">

<input type="text" name="a">

<input type="text" name="b">

<input type="text" name="c">

<input type="text" name="d">

<input type="submit" value="ㅇㅇ">

</form>

</body>

</html>


================b.jsp===================


<%@page import="java.util.Enumeration"%>

<%@ page language="java" contentType="text/html; charset=EUC-KR"

    pageEncoding="EUC-KR"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">


<%

Enumeration<String> t =request.getParameterNames(); -> 파라미터네임을 다받아온다

while(t.hasMoreElements()){ -> 파라미터가 존재하는지 검색

out.println(t.nextElement()); 

}

%> 

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">

<title>Insert title here</title>

</head>

<body>

<h1>겟파라미터네임확인 위에</h1>

</body>

</html>


======================================


이렇게 하면 



<input type="text" name="a">

<input type="text" name="b">

<input type="text" name="c">

<input type="text" name="d">   이 부분의 name 들을 다 받아온다

관련글 더보기