国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 編程 > Java > 正文

基于Session的國(guó)際化實(shí)現(xiàn)方法

2019-11-26 13:54:34
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

如何將我們網(wǎng)站的其它內(nèi)容(如菜單、標(biāo)題等)做國(guó)際化處理呢?這就是本篇要將的內(nèi)容―>國(guó)際化。

在項(xiàng)目的spring.xml文件添加的內(nèi)容如下

<mvc:interceptors>  <span style="white-space:pre">  </span><!-- 國(guó)際化操作攔截器 如果采用基于(請(qǐng)求/Session/Cookie)則必需配置 -->    <bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" />  </mvc:interceptors>

在項(xiàng)目中的源文件夾resources中添加myproperties.properties、myproperties_zh_.properties、myproperties_en_.properties三個(gè)文件

下面是jsp頁(yè)面的一些簡(jiǎn)單信息如下,僅僅是演示沒(méi)考慮其他的:

<%@ page language="java" contentType="text/html; charset=UTF-8"   pageEncoding="UTF-8"%> <!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>Insert title here</title> </head> <%   Locale name = (Locale) session.getAttribute("i18nlanguage");   ResourceBundle myResourcesBundle = ResourceBundle.getBundle("myproperties",name); %> <body>   <a href="${pageContext.request.contextPath}/index/findex.do?langType=en&page=Home">ENG</a> |  <a href="${pageContext.request.contextPath}/index/findex.do?langType=zh&page=Home"><%=myResourcesBundle.getString("simplified")%></a> </body> </html>

后臺(tái)Action層代碼如下:

package com.zhidao.oms.index;  import java.util.Locale;  import javax.servlet.http.HttpServletRequest;  import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam;  @Controller @RequestMapping("/index") public class IndexAction {         @RequestMapping("/findex")   public String Findex(HttpServletRequest request,@RequestParam String langType,String page){    if(langType.equals("zh")){       Locale locale = new Locale("zh", "CN");        request.getSession().setAttribute("i18nlanguage",locale);      }     else if(langType.equals("en")){       Locale locale = new Locale("en", "US");        request.getSession().setAttribute("i18nlanguage",locale);     }else{       request.getSession().setAttribute("i18nlanguage",Locale.getDefault());     }     return "/front/"+page+".jsp";   }    }

有關(guān)的效果圖展示大家測(cè)試一下就好了!寫(xiě)的不好的地方希望大家批評(píng)指正。

以上這篇基于Session的國(guó)際化實(shí)現(xiàn)方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 渭南市| 宾川县| 石河子市| 宣恩县| 察雅县| 苍南县| 灵璧县| 泗水县| 西乌珠穆沁旗| 凤城市| 娄底市| 白山市| 南乐县| 昌黎县| 颍上县| 井冈山市| 葫芦岛市| 介休市| 黔西县| 江都市| 鄱阳县| 缙云县| 阳山县| 长葛市| 龙井市| 徐闻县| 邮箱| 观塘区| 彭水| 涟源市| 平利县| 塘沽区| 甘肃省| 彩票| 湖州市| 庐江县| 陈巴尔虎旗| 韩城市| 宜良县| 桃源县| 镇雄县|