yj factory
[Java] Request 모든 파라미터 값 가져오기
1.소스 Enumeration params = request.getParameterNames(); String strParam = ""; while(params.hasMoreElements()) { String name = (String)params.nextElement(); String value = request.getParameter(name); strParam += name + "=" + value + "&"; } 2.결과 strParam 변수에 이름=값&이름=값 형식으로 저장된다.
JAVA
2015. 11. 24. 16:07
[JSTL] 숫자 천단위 표시하기
1. 태그 라이브러리 선언 2. 사용방법
JSTL
2015. 11. 24. 15:43