Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
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
반응형
'💻Bootcamp Self-Study Revision✨ > HTML5, CSS, Bootstrap, JSP' 카테고리의 다른 글
CSS: 테이블 만들 때 두 줄이 된 변수 이름 한 줄로 만들기) white-space: nowrap; 사용한다. (0) | 2023.04.23 |
---|---|
CSS: 배경에 전체 이미지가 적용되게 만들기 background-position: center center; 사용 (0) | 2023.04.23 |
HTML5: a 태그, button 태그 차이 (0) | 2023.04.23 |
CSS: text가 전혀 없는 클래스에 배경 색상 주는 법: height, width 지정하기 (0) | 2023.04.20 |
Comments