JSP_4th_编译指令include

一、include指令
1)将指定的JSP程序或者HTML文件包含进来。
2)<%@ include file="fileURL" %>
3)JSP Engine会在JSP程序的转换期间先把file属性设定的文件包含进来,然后开始执行转换及编译的工作。
4)举例TestBar.jsp:
<%@ page contentType="text/html; charset=UTF-8"%>
<html>
<body>
	<table>
		<tr><td><%@ include file="TitleBar.jsp" %></td></tr>
		<tr><td><% out.println("<p>这是用户显示区</p>"); %></td></tr>
	</table>
</body>
</html>

TitleBar.jsp如下所示:
<table>
	<tr>
		<td>
			<% out.println("Hi " + request.getParameter("user")); %>
		</td>
		<td></td>
	</tr>
</table>

访问TestBar.jsp,页面显示:

总结:
①<%@ include file="TitleBar.jsp" %>会把TitleBar.jsp中的文本内容原封不动的替换到当前位置,然后再执行转译和编译,再运行。
②类似于C语言中的#include<xxx.h>。
③不能向fileURL中传递参数
如:<%@ include file="abc.jsp?user=aaa" %>,这是错误的,必须在访问TestBar.jsp的URL后面跟上参数。





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值