JSPAdvertisementincludeディレクティブ
外部ファイルの埋め込み。
JSPコンパイル時に、外部ファイルが挿入されてからコンパイルが行われる。JSPファイル、HTMLファイルなど、任意のファイルを挿入できる。 メイン <%@ page contentType="text/html; charset=Shift_JIS" %> <html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html;charset=Shift_JIS"> <title>test</title> </head> <body> <%@ include file="date.inc" %> </body> </html>date.inc <%@ page import="java.util.*" %> <% Calendar cal = Calendar.getInstance(); %> <p> <%= cal.getTime() %> </p> 実行結果サンプル Sun Sep 14 23:52:06 JST 2003 |