ResourceBundle类在jsp中的国际化实现方法
来源:爱站网时间:2019-12-31编辑:网友分享
软件开发人员应该学习更多的开发语言,我们要开发出适应各国的web应用程序,今天这篇文章是爱站技术频道小编带给大家的ResourceBundle类在jsp中的国际化实现方法,希望对你学习有帮助。
软件开发人员应该学习更多的开发语言,我们要开发出适应各国的web应用程序,今天这篇文章是爱站技术频道小编带给大家的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中的国际化实现方法,我们都要赶上国际的潮流,飞往世界的顶端。