JSTL <fmt:setBundle> 标签与 <fmt:bundle> 标签都用于设置默认的数据源。
JSP <fmt:setBundle> 标签的语法如下:
<fmt:setBundle basename="resourceName" [var="绑定数据源别名"] [scope="page|session|request|application"]>
代码块
</fmt:setBundle>
其中:
下面为 <fmt:setBundle> 标签的简单实例。
编写 myresource.properties 文件,内容如下:
.properties 文件中的中文默认以 Unicode 编码显示。
index.jsp 代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!DOCTYPE html>
<html>
<head>
<title>城东书院(www.cdsy.xyz)</title>
</head>
<body>
<fmt:setBundle basename="myresource" var="lang" />
网站名称:
<fmt:message key="name" bundle="${lang}" />
<br/>
网址:
<fmt:message key="url" bundle="${lang}" />
</body>
</html>
页面输出内容如下: