<%@ 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">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<%
request.setCharacterEncoding("EUC-KR");
String value1 = request.getParameter("key1");
String value2 = request.getParameter("key2");
out.println("this is server response");
out.println("key1=" + value1);
out.println("key1=" + value2);
%>
<!-- jsp는 단순히 보내는 -->
</body>
</html>
'JAVA > 자바' 카테고리의 다른 글
자바 맵 포문으로 꺼내기 (0) | 2016.09.05 |
---|---|
자바 데이터 - 스트링 변환 (0) | 2016.04.26 |
자바 자바 JSP 호출 하기 (was) - 자바 소스 (0) | 2016.02.26 |
자바 POI라이브러리로 엑셀파일 읽고쓰기 (0) | 2016.02.10 |
자바 JFileChooser (0) | 2016.02.10 |