<fmt:bundle> 标签用于读取绑定的消息资源文件,该标签只对标签体之内的范围有效。
语法:
参数说明:
说明:当 basename 为 null、空或找不到资源文件时,在网页上会产生 "???<key>???" 的错误信息。
本示例应用 <fmt:bundle> 标签读取本地消息文本 localMessage.properties 中的属性信息,关键代码如下:
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<fmt:bundle basename="localMessage" prefix="zs">
<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=zx
branch=Java Web