欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ResourceBundle类在jsp中的国际化实现方法

程序员文章站 2023-11-17 23:20:10
今天第一次听说页面国际化这个词,所以查资料,顺便做了一个小页面,做做记录。 首先是两个资源文件,分别为msg_en_us.properties和msg_zh_cn.pro...

今天第一次听说页面国际化这个词,所以查资料,顺便做了一个小页面,做做记录。

首先是两个资源文件,分别为msg_en_us.properties和msg_zh_cn.properties

ResourceBundle类在jsp中的国际化实现方法 

ResourceBundle类在jsp中的国际化实现方法

显然中文字符是需要转换过来的。

这是jsp页面的代码

<%@ page language="java" contenttype="text/html; charset=utf-8" pageencoding="utf-8"%>

<%@page import="java.util.*"%>
<!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=utf-8">
  <title>国际化</title>
  <style type="text/css">
  div{
   width: 300px;
   text-align: center;
   margin: 0 auto;
  }
  </style>
 </head>
 
 <body>
  <a href="/international/test.jsp?language=zh" rel="external nofollow" >简体中文</a>|<a href="/international/test.jsp?language=en" rel="external nofollow" >english</a>
  <%
   resourcebundle bund=resourcebundle.getbundle("msg",request.getlocale());
   string str=request.getparameter("language");
   if(str!=null){
    if("zh".equals(str)){
     bund=resourcebundle.getbundle("msg",locale.china);
    }
    else if("en".equals(str)){
     bund=resourcebundle.getbundle("msg",locale.us);
    } 
   }
  %>
  <div>
   <h1><%=bund.getstring("inf") %></h1>
   <table>
    <tr>
     <td><%=bund.getstring("name") %>:</td>
     <td><input type="text" name="name"/></td>
    </tr>
    <tr>
     <td><%=bund.getstring("sex") %>:</td>
     <td><input type="text" name="sex"/></td>
    </tr>
    <tr>
     <td><%=bund.getstring("age") %>:</td>
     <td><input type="text" name="age"/></td>
    </tr>
    <tr>
     <td><%=bund.getstring("tel") %>:</td>
     <td><input type="text" name="tel"/></td>
    </tr>
   </table><br/>
   <input type="submit" value="<%=bund.getstring("submit")%>" name="submit"/>
  </div>
 </body>
</html>
 

结果图

ResourceBundle类在jsp中的国际化实现方法

ResourceBundle类在jsp中的国际化实现方法 

以上这篇resourcebundle类在jsp中的国际化实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。