JSP Request.getHeader()方法:获得Http协议定义的文件头
该方法用于获得 Http 协议定义的文件头信息。
语法:
getHeader(String name)
参数说明:
- name:header 的名称。
返回值:header 的取值。
示例
获取 Http 协议定义的文件头,关键代码如下:
<% String ct = request.getHeader("content-type"); out.println("Content-type="+ct); %>
该示例将在 JSP 页面输出"Content-type=application/x-www-form-urlencoded"。
发表评论