位置:首頁 > Java技術 > JSP教學 > JSTL <fmt:message>標簽

JSTL <fmt:message>標簽

<fmt:message>標簽映射鍵到本地化消息和參數進行更換。

屬性:

<fmt:message>標簽具有以下屬性:

屬性 描述 必須 默認
key 消息鍵用來檢索 No Body
bundle 資源包使用 No Default bundle
var 變量名稱來存儲本地化消息 No Print to page
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:message 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