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"] />
其中:
-
[ ]
:[ ]
中的内容为可选项; - url:需要导入文件的 URL,可以是相对路径和绝对路径;
- context:使用相对路径访问外部 context 资源时,context 用来指定这个资源的名称;
- var:用来存储所引入的文本的变量;
- scope:var 属性的作用域;
- charEncoding:所引入数据的字符编码;
- varReader:用于提供 java.io.Reader 对象的变量。
示例
下面为 <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>runoops自学(www.runoops.com)</title>
</head>
<body>
<body>
<c:import var="data" url="http://www.runoops.com" />
<c:out value="${data}" />
</body>
</html>
页面输出为“http://www.runoops.com”页面的源代码。