黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

<fmt:requestEncoding> 標(biāo)簽

<fmt:requestEncoding> 標(biāo)簽

JSP 標(biāo)準(zhǔn)標(biāo)簽庫JSP 標(biāo)準(zhǔn)標(biāo)簽庫

<fmt:requestEncoding> 標(biāo)簽用來指定返回給Web應(yīng)用程序的表單編碼類型。

語法格式

<fmt:requestEncoding value="<string>"/>

屬性

<fmt:requestEncoding> 標(biāo)簽有如下屬性:

屬性 描述 是否必要 默認(rèn)值
key 字符編碼集的名稱,用于解碼request參數(shù)

使用<fmt:requestEncoding> 標(biāo)簽來指定字符集,用于解碼來自表單的數(shù)據(jù)。在字符集不是 ISO-8859-1 時(shí)必須使用這個(gè)標(biāo)簽。由于大多數(shù)瀏覽器在它們的請求中不包含 Content-Type 頭,所以需要這個(gè)標(biāo)簽。

<fmt:requestEncoding> 標(biāo)簽的目的就是用來指定請求的 Content-Type。您必須指定一個(gè) Content-Type,就算 response 是通過 Page 指令的 contentType 屬性來編碼。這是因?yàn)?response 的實(shí)際區(qū)域可能與 Page 指令所指定的不同。

如果頁面包含 I18N-capable 格式行為用于設(shè)置 response 的 locale 屬性(通過調(diào)用 ServletResponse.setLocale() 方法),任何在頁面中指定的編碼集將會(huì)被覆蓋。


實(shí)例演示

實(shí)例

<%@ 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:requestEncoding 標(biāo)簽</title> </head> <body> <fmt:requestEncoding value="UTF-8" /> <fmt:setLocale value="es_ES"/> <fmt:setBundle basename="com.runoob.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é)果如下:

Uno
Dos
Tres

JSP 標(biāo)準(zhǔn)標(biāo)簽庫JSP 標(biāo)準(zhǔn)標(biāo)簽庫

相關(guān)文章