资源国际化(总结)

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选项--语言--添加
            在最上面的语言为默认的浏览器语言

你可能感兴趣的:(浏览器,sun)