JSTL <fmt:setBundle>標簽
<fmt:setBundle>標簽是用來加載資源包並將其存儲在指定的範圍變量或包配置變量。
屬性:
<fmt:setBundle>標簽具有以下屬性:
屬性 | 描述 | 必須 | 默認 |
---|---|---|---|
basename | 資源包家族公開作用域或配置變量的基本名稱 | Yes | None |
var | 變量名稱用來存儲新包 | No | Replace default |
scope | 存儲新的捆綁變量的範圍 | No | 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:setBundle Tag</title> </head> <body> <fmt:setLocale value="en"/> <fmt:setBundle basename="com.yiibai.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