<fmt:message> 标签负责读取本地消息资源,它从指定的消息文本资源中读取对应的键值,并且可以将键值存储在指定范围的变量中。
<fmt:message> 标签各属性的详细介绍如表所示。
属性 | 类型 | 描述 | 引用 EL |
---|---|---|---|
key | String | 指定键的名称 | 可以 |
bundle | LocalizationContext | 指定消息文本的来源 | 可以 |
var | String | 存储资源的变量 | 不可以 |
scope | String | 变量的存储范围 | 不可以 |
应用 <fmt:bundle> 标签和 <fmt:message> 标签读取本地消息文本 localMessage.properties 的属性内容,关键代码如下:
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<fmt:bundle basename="localMessage">//读取键值
<fmt:message key="company"/>
<fmt:message key="author"/>
<fmt:message key="branch"/>
</fmt:bundle>
说明:localMessage.properties 文件位于 class 文件夹中。
本地消息文本 localMessage.properties 的具体代码如下:
company=zs
author=zs
branch=Java Web
应用 <fmt:bundle> 标签和 <fmt:message> 标签读取本地消息文本,并将读取的结果保存到变量中,关键代码如下:
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<fmt:bundle basename="localMessage">
<fmt:message key="company" var="company"/>
<fmt:message key="author" var="author"/>
<fmt:message key="branch" var="branch"/>
公司:${company}
作者:${author}
部门:${branch}
</fmt:bundle>
说明:localMessage.properties 文件位于 class 文件夹中。
本地消息文本 localMessage.properties 的具体代码如下:
company=zs
author=zs
branch=Java Web