2019.05.20
주는 방식에는 두가지 방식(GET/POST)이 있고 받는 방식은 같다
// GET 방식
어떠한 정보를 가져와서 조회하기 위해서 사용되는 방식
예)
1
2
3
|
<tr>
</tr>
|
// POST 방식
데이터를 서버로 제출하여 추가 또는 수정하기 위해서 데이터를 전송하는 방식
예)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<table class = "table table-striped">
<tr>
<th> eng </th>
<th> kor </th>
</tr>
<tr>
<td><input type = "text" name = "eng" class="form-control"></td>
<td><input type = "text" name = "kor" class="form-control"></td>
</tr>
</table>
<div class = "text-right">
<button type = "submit" class = "btn btn-outline-secondary"> 확인 </button>
</div>
</form>
|
// 받기
예)
1
2
3
4
5
6
7
|
<%
request.setCharacterEncoding("euc-kr"); // 한글이 깨지지 않도록
String eng = request.getParameter("eng");
String kor = request.getParameter("kor");
// System.out.println(eng + " <-- eng dicInsertAction.jsp");
// System.out.println(kor + " <-- kor dicInsertAction.jsp");
%>
|
'교육 > Java' 카테고리의 다른 글
#11 Java 전역변수와 지역변수 (0) | 2019.07.23 |
---|---|
#8 Java 메서드 오버로딩 (Method Overloading) (0) | 2019.07.23 |
#7 Java return 있는 메서드 선언 및 호출 (0) | 2019.07.23 |
#6 Java 접근 지정자(Access Modifier) (0) | 2019.07.23 |
#5 Java 메서드(Method) 정의와 선언 및 호출, Data Type (0) | 2019.07.23 |