标签:content html page 容器 其他 tco encoding 文件包含 语法
1.page指令:
作用一:导包
<%@page import = "java.util.*" %>
<%@page import = "java.util.*,java.sql.*" %>
作用二:设置response.setContentType() 方法的参数值
<%@ page contentType = "image/gif" %>
作用三:设置容器读取该文件时的解码
<%@ pageEncoding = "UTF-8" %>
2.include指令:
作用一:在JSP页面转换成SErvlet时,能够将其他文件包含进来,可以包含jsp文件,也可以是静态的HTML文件。
通过该语句能方便的在每个JSP页面中包含导航栏、版权声明、logo等。
语法: <%@ include file= "url" %>
eg:<%@ include file= "header.html" %>
<%@ include file= "footer.html" %>
标签:content html page 容器 其他 tco encoding 文件包含 语法
原文地址:http://www.cnblogs.com/sunfenqing/p/7324284.html