主页 > 知识库 > ResourceBundle类在jsp中的国际化实现方法

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

热门标签:南通通讯外呼系统产品介绍 润滑油销售电销机器人 给地图标注得佣金 电话机器人需要使用网络吗 如何看懂地图标注点 电销机器人免培训 自绘地图标注数据 外呼系统使用方法 海外图书馆地图标注点

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

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

 

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

这是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和properties读取配置文件的区别
  • javaweb 国际化:DateFormat,NumberFormat,MessageFormat,ResourceBundle的使用
  • Java ResourceBundle案例详解

标签:乐山 黄石 贷款邀约 广州 内江 铜川 南京 大连

巨人网络通讯声明:本文标题《ResourceBundle类在jsp中的国际化实现方法》,本文关键词  ResourceBundle,类在,jsp,中的,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《ResourceBundle类在jsp中的国际化实现方法》相关的同类信息!
  • 本页收集关于ResourceBundle类在jsp中的国际化实现方法的相关信息资讯供网民参考!
  • 推荐文章