Notice
Recent Posts
Recent Comments
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
In Total
관리 메뉴

A Joyful AI Research Journey🌳😊

JSP: request.setCharacterEncoding("UTF-8") 본문

💻Bootcamp Self-Study Revision✨/HTML5, CSS, Bootstrap, JSP

JSP: request.setCharacterEncoding("UTF-8")

yjyuwisely 2023. 4. 23. 07:00
<% request.setCharacterEncoding("utf-8");%>

폼 태그에서 입력한 값을 전송할 때는 GET방식과 POST방식으로 나뉘는데 POST방식으로 보내는 값이 '한글'일 경우 깨지지 않게 전달하기 위해 사용하는 것이 request.setCharacterEncoding("UTF-8")이다.

<%@ page language="java" contentType="text/html; charset=UTF-8"  pageEncoding="MS949"%>

 

 jsp파일은 MS949로 작성되었으며 브라우저는 UTF-8로 받게될 것이다.


내가 사용한 코드)

 <%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 
<!DOCTYPE html>
<html lang="ko">
<head>
<% request.setCharacterEncoding("utf-8");%>

참고: https://jong99.tistory.com/92

참고: https://powersmile-it.tistory.com/56


 

728x90
반응형
Comments