본문 바로가기

개발하자/JSP&Servlet

국제화태그 setLocale 언어설정하기

classes/resource/msg.properties
===============================
AAA=a
BBB=b

classes/resource/msg_ko.properties
==================================
AAA=에이
BBB=비


fmt1.jsp
========
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<fmt:setLocale value="ko" />
<fmt:bundle basename="resource.msg" >
<!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>
<fmt:message key="AAA" /><br>
<fmt:message key="BBB" /><br>
</body>
</html>
</fmt:bundle>