<%--程序include1.jsp--%> <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <html> <head> <title>被include包含的文件</title> </head> <body> <h1>Hello World!</h1> </body> </html> <%--程序include2.jsp--%> <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <html> <head> <title>include指令示例</title> </head> <body> <center> 现在的日期和时间是:<%=new Date() %> <hr> <%@ include file="include1.jsp" %> </center> </body> </html>