JSTL <c:import> 标签类似于 <jsp:include>,用来导入静态或动态文件。区别是,<jsp:include> 只能导入同一 Web 应用下的文件,而 <c:import> 可以导入其它网站的文件。
JSP <c:import> 标签语法如下:
<c:import url="url" [context="context"] [var="varname"] [scope="page|request|session|application"] [charEncoding="charencoding"] [varReader="readerName"] />
其中:
下面为 <c:import> 标签的简单实例。
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html>
<html>
<head>
<title>城东书院(www.cdsy.xyz)</title>
</head>
<body>
<body>
<c:import var="data" url="https://www.cdsy.xyz" />
<c:out value="${data}" />
</body>
</html>
页面输出为“https://www.cdsy.xyz”页面的源代码。