JSTL - Core <fmt:message> 标签



<fmt:message> 标签将键映射到本地化消息并执行参数替换。

属性

<fmt:message> 标签具有以下属性:

属性 描述 必填 默认值
key 要检索的消息键 主体
bundle 要使用的资源包 默认包
var 存储本地化消息的变量名称 打印到页面
scope 存储本地化消息的变量的作用域 页面

示例

<%@ 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 Tag</title>
   </head>

   <body>
      <fmt:setLocale value = "en"/>
      <fmt:setBundle basename = "com.tutorialspoint.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
jsp_standard_tag_library.htm
广告