W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
<fmt:message>標(biāo)簽映射一個(gè)關(guān)鍵字給局部消息,然后執(zhí)行參數(shù)替換。
<fmt:message key="<string>" bundle="<string>" var="<string>" scope="<string>"/>
<fmt:message>標(biāo)簽有如下屬性:
屬性 | 描述 | 是否必要 | 默認(rèn)值 |
---|---|---|---|
key | 要檢索的消息關(guān)鍵字 | 否 | Body |
bundle | 要使用的資源束 | 否 | 默認(rèn)資源束 |
var | 存儲(chǔ)局部消息的變量名 | 否 | Print to page |
scope | var屬性的作用域 | 否 | Page |
<%@ 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" %> <html> <head> <title>JSTL fmt:message 標(biāo)簽</title> </head> <body> <fmt:setLocale value="en"/> <fmt:setBundle basename="com.w3cschool.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>
運(yùn)行結(jié)果如下:
One Two Three
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: