code339.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%-- jsp include --%>
<h4>包含静态文件</h4>
<jsp:include page="code340.html"></jsp:include>
<hr>
<h4>包含动态文件</h4>
<jsp:include page="code341.jsp"></jsp:include>
</body>
</html>