<fmt:message> 标签

<fmt:message>标签映射一个关键字给局部消息,然后执行参数替换。

语法格式

<fmt:message
   key="<string>"
   bundle="<string>"
   var="<string>"
   scope="<string>"/>

属性

<fmt:message>标签有如下属性:

属性描述是否必要默认值
key要检索的消息关键字Body
bundle要使用的资源束默认资源束
var存储局部消息的变量名Print to page
scopevar属性的作用域Page

实例演示

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %><html><head><title>JSTL fmt:message 标签</title></head><body><fmt:setLocale value="en"/><fmt:setBundle basename="com.w3cschool.Example" var="lang"/><fmt:message key="count.one" bundle="${lang}"/><br/><fmt:message key="count.two" bundle="${lang}"/><br/><fmt:message key="count.three" bundle="${lang}"/><br/></body></html>

运行结果如下:

One Two Three

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号