JSTL <fmt:bundle> 标签用来绑定数据源(.properties)文件,JSTL <fmt:message> 标签用来从指定的资源文件中调用信息。
JSP <fmt:bundle> 标签的语法如下:
<fmt:bundle basename="resourceName" prefix="pre">
代码块
</fmt:bundle>
其中:
JSP <fmt:message> 标签的语法如下:
<fmt:message key="messageName" [var="varname"] [bundle="resourceName"] [scope="page|request|session|application"] />
其中:
编写 myresource.properties 文件,内容如下:
my.name=城东书院
my.url=www.cdsy.xyz
.properties 文件中的中文默认以 Unicode 编码显示。
使用 <fmt:bundle> 标签绑定数据源中的 myresource.properties 文件,设定前缀为my.,然后利用 <fmt:message> 标签取出值。index.jsp 代码如下:
<%@ 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"%>
<!DOCTYPE html>
<html>
<head>
<title>城东书院(www.cdsy.xyz)</title>
</head>
<body>
<fmt:bundle basename="myresource" prefix="my.">
<fmt:message key="name" var="name" />
<fmt:message key="url" var="url" />
</fmt:bundle>
网站名称:
<c:out value="${name }" />
<br />
网址:
<c:out value="${url }" />
</body>
</html>
页面输出内容如下: