JSP jstl-core-<fmt:message> 标记

  • jstl-core-<fmt:message> 标记

    <fmt:message>映射键本地化消息和执行参数替换。
  • 属性

    属性 描述 必需 默认值
    key 信息键检索 body
    bundle 要使用的资源包 默认捆绑
    var 用于存储本地化消息的变量名称 打印到页面
    scope 存储本地化消息的变量作用域 page
  • 示例

    
    <%@ 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