파라미터 이름 값 구하기
getParameterValues()
- 폼 데이터를 얻을 때 여러 개의 값을 저장할 수 있는 배열 형태를 위해 사용
- 값이 전달되지 않을 경우 리턴 값이 'null' 이 올 수 있다.
getParameterNames()
- 모든 파라미터 이름을 Enumeration 타입으로 리턴
getParameterValues()
- 폼 데이터를 얻을 때 여러 개의 값을 저장할 수 있는 배열 형태를 위해 사용
- 값이 전달되지 않을 경우 리턴 값이 'null' 이 올 수 있다.
getParameterNames()
- 모든 파라미터 이름을 Enumeration 타입으로 리턴
// 매개변수의 이름을 수로 반환
Enumeration e = req.getParameterNames();
// Enumeration 객체가 하나 이상의 element를 갖고 있다면 true 반환
while (e.hasMoreElements()) {
// Enumeration 객체가 하나 이상의 element를 갖고 있다면 다음 element를 반환
String name = (String) e.nextElement();
String values[] = req.getParameterValues(name);
// values 변수에 값이 있는지 확인
if(values != null) {
for(int i=0; i < values.length; i++) {
out.print("<li>" + name + " : " + values[i]);
}
}
}
Enumeration e = req.getParameterNames();
// Enumeration 객체가 하나 이상의 element를 갖고 있다면 true 반환
while (e.hasMoreElements()) {
// Enumeration 객체가 하나 이상의 element를 갖고 있다면 다음 element를 반환
String name = (String) e.nextElement();
String values[] = req.getParameterValues(name);
// values 변수에 값이 있는지 확인
if(values != null) {
for(int i=0; i < values.length; i++) {
out.print("<li>" + name + " : " + values[i]);
}
}
}
WRITTEN BY
- 손가락귀신
정신 못차리면, 벌 받는다.
,