본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

JAVA

input값 받아 띄우기, getParameter()

getParameter()
input값 받아 띄우기

<input name="id" value="아이디">
<input name="pw" value="비밀번호">
String identy = request.getParameter("id(name 값)");
String pass = request.getParameter("pw(name 값)");

변수로 입력값을 받아

response.setContentType("text/html;charset=utf-8");
PrintWriter pw = response.getWriter();
pw.print(pass+"<br>"+identy)

출력한다.

'JAVA' 카테고리의 다른 글

정밀한 시간표현, currentTimeMillis()  (0) 2023.03.18
타입검사하기, instanceof  (0) 2023.03.18
주소값출력, identityHashCode()  (0) 2023.03.17
조건문, if와 switch  (0) 2023.03.17
상수, final  (0) 2023.03.17