[책펌] JSTL 문법 정리 (국제화 지역화 태그 : fmt)

By | 1월 16, 2009

* <fmt:setLocale/> : 언어 및 국가 설정

set locale : ko <fmt:setLocale value="ko"/>  => 한국으로 로케일 설정
now : <%=response.getLocale() %>  => 현재 로케일 확인
set locale : ja <fmt:setLocale value="ja"/>  => 일본어로
now : <%=response.getLocale() %>
set locale : en <fmt:setLocale value="en"/>  => 영어로
now : <%=response.getLocale() %>

  => 다국어 페이지를 만들 경우 ResourceBundle로 불러오는 *.properties 파일들과 연계되어 사용할 수 있다.
  => value의 값은 언어코드와 국가코드로 이루어진다.  생략될 경우 서버의 기본값으로 설정된다.

* <fmt:requestEncoding/> : request.setCharacterEncoding()

<fmt:requestEncoding value="euc-kr"/>
  => request.setCharacterEncoding("euc-kr") 과 같은 효과를 나타낸다.

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments