- JSP基础教程
- JSP - 首页
- JSP - 概述
- JSP - 环境搭建
- JSP - 架构
- JSP - 生命周期
- JSP - 语法
- JSP - 指令
- JSP - 动作
- JSP - 隐式对象
- JSP - 客户端请求
- JSP - 服务器响应
- JSP - HTTP状态码
- JSP - 表单处理
- JSP - 编写过滤器
- JSP - Cookie处理
- JSP - 会话跟踪
- JSP - 文件上传
- JSP - 日期处理
- JSP - 页面重定向
- JSP - 点击计数器
- JSP - 自动刷新
- JSP - 发送邮件
- JSP高级教程
- JSP - 标准标签库
- JSP - 数据库访问
- JSP - XML数据
- JSP - JavaBean
- JSP - 自定义标签
- JSP - 表达式语言
- JSP - 异常处理
- JSP - 调试
- JSP - 安全性
- JSP - 国际化
- JSP有用资源
- JSP - 问答
- JSP - 快速指南
- JSP - 有用资源
- JSP - 讨论
JSTL - Core <fmt:bundle> 标签
<fmt:bundle>标签将使指定的资源包可用于所有位于<fmt:bundle>和</fmt:bundle>标签之间的<fmt:message>标签。这样,您无需为每个<fmt:message>标签指定资源包。
例如,以下两个<fmt:bundle>块将产生相同的输出:
<fmt:bundle basename = "com.tutorialspoint.Example"> <fmt:message key = "count.one"/> </fmt:bundle> <fmt:bundle basename = "com.tutorialspoint.Example" prefix = "count."> <fmt:message key = "title"/> </fmt:bundle>
属性
<fmt:bundle>标签具有以下属性:
属性 | 描述 | 必填 | 默认值 |
---|---|---|---|
basename | 指定要加载的资源包的基本名称。 | 是 | 无 |
Prefix | 附加到<fmt:message>子标签中每个键名称的值 | 否 | 无 |
示例
资源包包含特定于区域设置的对象。资源包包含键值对。当您的程序需要特定于区域设置的资源时,您可以保持所有区域设置通用的键,但您可以拥有特定于区域设置的翻译值。资源包有助于为区域设置提供特定内容。
Java资源包文件包含一系列键到字符串的映射。我们关注的方法涉及创建扩展java.util.ListResourceBundle类的已编译Java类。您必须编译这些类文件并使它们可用于Web应用程序的类路径。
让我们定义一个默认资源包,如下所示:
package com.tutorialspoint; 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.tutorialspoint.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.tutorialspoint.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
查看<fmt:setLocale>和<setBundle>标签以了解完整的概念。
jsp_standard_tag_library.htm
广告