JSP 標(biāo)準(zhǔn)標(biāo)簽庫(kù)
<c:import>標(biāo)簽提供了所有<jsp:include>行為標(biāo)簽所具有的功能,同時(shí)也允許包含絕對(duì)URL。
舉例來(lái)說(shuō),使用<c:import>標(biāo)簽可以包含一個(gè)FTP服務(wù)器中不同的網(wǎng)頁(yè)內(nèi)容。
<c:import url="<string>" var="<string>" scope="<string>" varReader="<string>" context="<string>" charEncoding="<string>"/>
<c:import>標(biāo)簽有如下屬性:
屬性 | 描述 | 是否必要 | 默認(rèn)值 |
---|---|---|---|
url | 待導(dǎo)入資源的URL,可以是相對(duì)路徑和絕對(duì)路徑,并且可以導(dǎo)入其他主機(jī)資源 | 是 | 無(wú) |
context | 當(dāng)使用相對(duì)路徑訪問(wèn)外部context資源時(shí),context指定了這個(gè)資源的名字。 | 否 | 當(dāng)前應(yīng)用程序 |
charEncoding | 所引入的數(shù)據(jù)的字符編碼集 | 否 | ISO-8859-1 |
var | 用于存儲(chǔ)所引入的文本的變量 | 否 | 無(wú) |
scope | var屬性的作用域 | 否 | page |
varReader | 可選的用于提供java.io.Reader對(duì)象的變量 | 否 | 無(wú) |
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head> <title>c:import 標(biāo)簽示例</title> </head> <body> <c:import var="data" url=""/> <c:out value="${data}"/> </body> </html>
以上程序?qū)?huì)打印"頁(yè)面的源代碼,您可以自己動(dòng)手嘗試一下。