首页 > 代码库 > struts2国际化---配置国际化全局资源文件并输出国际化资源信息
struts2国际化---配置国际化全局资源文件并输出国际化资源信息
我们首先学习怎么配置国际化全局资源文件,并输出资源文件信息
1.首先struts2项目搭建完成后,我们在src目录下,即struts2.xml同级目录下创建资源文件,资源文件的名称格式为:
XXX_语言_国家.properties
XXX:资源文件名称,可以随意定义
语言、国家:必须是java所支持的语言和国家,例如:
中国大陆:语言 zh 国家 CN
美国:语言 en 国家 US
所以我们可以这么取名:
例如:itheima_zh_CN.properties
itheima_en_US.properties
2.创建上述的两个资源文件,然后在其中输入内容:key 和 value
例如:welcome_zh_CN.properties中输入:welcome=欢迎来到北京,其中中文他们会自动转换为ascii码:
welcome=\u6B22\u8FCE\u6765\u5230\u5317\u4EAC
welcome_en_US.properties中输入:welcome=welcome to beijing
3.然后我们在struts2.xml中配置全局资源文件
<constant name="struts.custom.i18n.resources" value=http://www.mamicode.com/"XXX">
这里value取值为itheima
4.在action中我们可以通过getText("welcome")获取值
在jsp中我们可以通过<s:text name="welcome"></s:text>标签获取值
或者<s:textfield name="" value=http://www.mamicode.com/"" key="welcome">
源代码:
MyAction.java:
package com.itheima.action; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionSupport; public class MyAction extends ActionSupport { public String execute() { ActionContext.getContext().put("msg", getText("welcome")); return "success"; } }struts2.xml:
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <constant name="struts.custom.i18n.resources" value=http://www.mamicode.com/"itheima">>
welcome.jsp:<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@ taglib uri="/struts-tags" prefix="s"%> <!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> <body> <!-- 第一种获取方式 --> <s:text name="welcome"></s:text><br> <!-- 第二种获取方式 --> <s:textfield name="" value=http://www.mamicode.com/"" key="welcome">
>
项目树如下:
struts2国际化---配置国际化全局资源文件并输出国际化资源信息