include指令和<jsp:include>動做標識均可以用來包含文件,好比要在JSP頁面中顯示大量的純文本,能夠將定些文本文字寫入靜態文件中(好比記事本),而後經過include指令或者動做標識包含到該JSP頁面中,這樣能夠讓JSP頁面更簡潔。
html
舉一個簡單例子用來包含網站的banner和版權信息欄。java
我在51cto這截了三張圖片。分別命名瀏覽器
banner.jpgjsp
center.jpgide
copyright.jpg網站
include指令的應用ui
(1)編寫一個名稱爲top.jsp的文件,用來放置網站的banner信息spa
<%@ page pageEncoding="GB18030"%> <img src="p_w_picpaths/banner.jpg">
(2)編寫一個名稱爲copyright.jsp的文件,用於放置網站的版權信息htm
<%@ page pageEncoding="GB18030"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <% String copyright=""; %> <!-- All Copyright©2014 校來校網有限公司--> <table width="778"height="61"border="0"cellpadding="0"cellspacing="0"background="p_w_picpaths/copyright.jpg"> <tr> <td><%=copyright %></td> </tr> </table>
(3)編寫一個名稱爲index.jsp的文件,在該頁面中包括top.jsp和copyright.jsp文件,從而實現一個完整的界面:blog
<%@ page language="java" contentType="text/html; charset=GB18030" pageEncoding="GB18030"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=GB18030"> <title>使用文件包含include指令</title> </head> <body style="margin:0px;"> <%@ include file="top.jsp" %> <table width="778" height="279"border="0"cellpadding="0"cellspacing="0"background="p_w_picpaths/center.jpg"> <tr> <td> </td> </tr> </table> <%@ include file="copyright.jsp"%> </body> </html>
技巧:在應用include指令進行文件包含時,爲了使整個頁面的層次結構不發生衝突,建議在被包含頁面中將<html><body>等標記刪除
<jsp:include>動做標識的應用
只需將index.jsp代碼修改一下便可.將include指令的<%@include file="xx.jsp"%>修改成動做標識的<jsp:include page="xx.jsp"/>
<%@ page language="java" contentType="text/html; charset=GB18030" pageEncoding="GB18030"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=GB18030"> <title>使用<jsp:include>動做標識</title> </head> <body style="margin:0px;"> <jsp:include page="top.jsp" /> <table width="778" height="279"border="0"cellpadding="0"cellspacing="0"background="p_w_picpaths/center.jpg"> <tr> <td> </td> </tr> </table> <jsp:include page="copyright.jsp"/> </body> </html>
include指令與<jsp:include>動做標識的區別
(1)include指令經過file屬性指定被包含的文件,而且file屬性不支持任何表達式;<jsp:include>動做標識經過page屬性指定被包含文件,支持JSP表達式
(2)使用include指令時,被包含文件內容原封不動地插入到包含頁中,而後JSP編譯器再將合成後的文件最終編譯成一個java文件;使用<jsp:include>動做標識包含文件時,當該標識被執行時,程序會請求轉發(不是請求重定向)到被包含的頁面,並將執行結果輸出到瀏覽器中,而後返回包含頁繼續執行後面的代碼。
(3)include指令包含文件時,因爲被包含文件最終生成一個文件,因此在被包含文件、包含文件中不能有重名的變量或方法;而在應用動做標識包含文件時,因爲是單獨編譯,因此被包含文件、包含文件中重名的變量和方法是不衝突的。