<c:import> 標(biāo)簽
<c:import> 標(biāo)簽
<c:import>標(biāo)簽提供了所有<jsp:include>行為標(biāo)簽所具有的功能,同時也允許包含絕對URL。
舉例來說,使用<c:import>標(biāo)簽可以包含一個FTP服務(wù)器中不同的網(wǎng)頁內(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,可以是相對路徑和絕對路徑,并且可以導(dǎo)入其他主機(jī)資源 | 是 | 無 |
context | 當(dāng)使用相對路徑訪問外部context資源時,context指定了這個資源的名字。 | 否 | 當(dāng)前應(yīng)用程序 |
charEncoding | 所引入的數(shù)據(jù)的字符編碼集 | 否 | ISO-8859-1 |
var | 用于存儲所引入的文本的變量 | 否 | 無 |
scope | var屬性的作用域 | 否 | page |
varReader | 可選的用于提供java.io.Reader對象的變量 | 否 | 無 |
實(shí)例演示
<%@ 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)簽實(shí)例</title> </head> <body> <c:import var="data" url="http://www.runoob.com"/> <c:out value="${data}"/> </body> </html>
以上程序?qū)蛴ttp://www.runoob.com"頁面的源代碼,您可以自己動手嘗試一下。
相關(guān)文章