實驗要求
編寫乙個jsp頁面includehello.jsp,使用include指令在jsp 頁面中靜態插入hello.txt的內容。要求用「記事本」編寫乙個txt檔案hello.txt.hello.txt的每行有若干個英文單詞,這些單詞之間用空格分隔,每行之間用「
」分隔,如下:
hello.txt
;charset
=utf
-8" %>
鳥 蘋果 男孩 紅色 月亮
includehello.jsp
page
contenttype
="text/html;charset=utf-8"
%>
<
html
>
<
body
>
include
file
="hello.txt"
%>
body
>
html
>
執行結果:
JSP標準標記庫
jsp標準標記庫 jsp standard tag library,jstl 是乙個實現web應用程式中常見的通用功能的定製標記庫集,這些功能包括迭代和條件判斷 資料管理格式化 xml操作以及資料庫訪問。jstl 1.0 有四個定製標記庫 core format xml 和 sql.1.core 標...
JSP 常見指令
directive attribute value page指令為容器提供當前頁面的使用說明。乙個jsp頁面可以包含多個page指令。page 定義網頁依賴屬性,比如指令碼語言 error頁面 快取需求等等 page格式如下 page attribute value jsp可以通過include指令...
jsp指令的include指令
include指令為檔案載入指令。被載入的檔案可以是文字檔案,html檔案,jsp檔案。myjsp1.jsp檔案中的 page contenttype text html charset gb2312 include file a.txt a.txt中的 hello txt 2 在myjsp2.js...