W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
<fmt:setBundle>標簽用來載入一個資源束,然后將它存儲在作用域中已命名的變量或bundle配置變量中。
<fmt:setBundle baseName="<string>" var="<string>" scope="<string>"/>
<fmt:setBundle>標簽有如下屬性:
屬性 | 描述 | 是否必要 | 默認值 |
---|---|---|---|
basename | 資源束家族基礎名稱,暴露給作用域變量或配置變量 | 是 | 無 |
var | 存儲新資源束的變量 | 否 | Replace default |
scope | 變量的作用域 | 否 | 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:setBundle 標簽</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>
運行結果如下:
One Two Three
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: