1. 程式人生 > >資源國際化(總結)

資源國際化(總結)

1.建立一箇中文臨時檔案;必須是 .properties的檔案
2.修改編碼方式為: utf-8
3.native2ascii.exe -encoding utf-8 tempApplication.properties application_zh_CN.properties
將tempApplication.properties 檔案 的編碼轉換到application_zh_CN.properties 檔案中

4.在網頁上導包:
<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
<fmt:setBundle basename="i18n.WelcomeBundle" />


5. <html>
<head><title> <fmt:message key="Welcome"/></title></head>
<body>
<h2><fmt:message key="Welcome" /></h2>
Locale: ${pageContext.request.locale.language} _
${pageContext.request.locale.country}
</body>
</html>

註釋:welcome 是中文臨時檔案中的“welcome=歡迎” 他們是一種對映
等號後面是那種文字,那麼頁面中將顯示何種語言
在瀏覽器的:工具--Interbet選項--語言--新增
在最上面的語言為預設的瀏覽器語言