<FMT:束>标签将使指定包提供给所有的<fmt:消息>的BOU之间发生的标签nding <FMT:束>和</ FMT:束>标记。这样,您无需为每个<fmt:message>标签指定资源束。
例如,以下两个<fmt:bundle>块将产生相同的输出-
<fmt:bundle basename = "com.nhooo.Example"> <fmt:message key = "count.one"/> </fmt:bundle> <fmt:bundle basename = "com.nhooo.Example" prefix = "count."> <fmt:message key = "title"/> </fmt:bundle>
<FMT:束>标签具有以下属性-
属性 | 描述 | 需要 | 默认 |
---|---|---|---|
基本名 | 指定要加载的资源包的基本名称。 | 是 | 没有 |
字首 | 要在<fmt:message>子标签中的每个键名前面附加的值 | 没有 | 没有 |
资源束包含特定于语言环境的对象。资源束包含键/值对。当您的程序需要特定于语言环境的资源时,您可以保留所有语言环境所共有的所有键,但是可以转换特定于语言环境的值。资源束有助于向语言环境提供特定的内容。
Java资源包文件包含一系列键到字符串的映射。我们关注的方法涉及创建扩展java.util.ListResourceBundle类的已编译Java类。您必须编译这些类文件,并使它们可用于Web应用程序的类路径。
让我们定义一个默认资源束,如下所示:
package com.nhooo; import java.util.ListResourceBundle; public class Example_En extends ListResourceBundle { public Object[][] getContents() { return contents; } static final Object[][] contents = { {"count.one", "One"}, {"count.two", "Two"}, {"count.three", "Three"}, }; }
让我们编译上面的类Example.class,并使其在您的Web应用程序的CLASSPATH中可用。现在您可以使用以下JSTL标记显示三个数字,如下所示:
<%@ 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:bundle Tag</title> </head> <body> <fmt:bundle basename = "com.nhooo.Example" prefix = "count."> <fmt:message key = "one"/><br/> <fmt:message key = "two"/><br/> <fmt:message key = "three"/><br/> </fmt:bundle> </body> </html>
上面的代码将产生以下结果-
One Two Three
尝试不带前缀的上述示例,如下所示:
<%@ 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:bundle Tag</title> </head> <body> <fmt:bundle basename = "com.nhooo.Example"> <fmt:message key = "count.one"/><br/> <fmt:message key = "count.two"/><br/> <fmt:message key = "count.three"/><br/> </fmt:bundle> </body> </html>
上面的代码将产生以下结果-
One Two Three