속성
속성 | 설명 | 필수 | 기본값 |
---|---|---|---|
키 | 요청 매개변수를 디코딩할 때 적용하려는 문자 인코딩의 이름입니다. | 예 | 없음 |
페이지에 I18N 지원 서식 지정 작업이 포함된 경우 ServletResponse.setLocale()을 호출하여 응답의 로케일(및 문자 인코딩)을 설정합니다. , 페이지 지시문에 지정된 모든 인코딩이 무시됩니다.
예시
<%@ taglib uri = "https://java.sun.com/jsp/jstl/core" prefix = "c" %> <%@ taglib uri = "https://java.sun.com/jsp/jstl/fmt" prefix = "fmt" %> <html> <head> <title>JSTL fmt:message Tag</title> </head> <body> <fmt:requestEncoding value = "UTF-8" /> <fmt:setLocale value = "es_ES"/> <fmt:setBundle basename = "com.tutorialspoint.Example" var = "lang"/> <fmt:message key = "count.one" bundle = "${lang}"/><br/> <fmt:message key = "count.two" bundle = "${lang}"/><br/> <fmt:message key = "count.three" bundle = "${lang}"/><br/> </body> </html>
다음 결과를 받게 됩니다 -
Uno Dos Tres