首页 > Web开发 > 详细

jsp获取请求头信息

时间:2015-03-26 23:08:00      阅读:271      评论:0      收藏:0      [点我收藏+]
 1 <%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%>
 2 <%
 3 String path = request.getContextPath();
 4 String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
 5 %>
 6 
 7 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 8 <html>
 9   <head>
10     <base href="<%=basePath%>">    
11     <title>获取表头信息</title>
12   </head>  
13   <body>
14    <%
15     Enumeration <String> enumer=request.getHeaderNames();
16     int count=0;
17     while(enumer.hasMoreElements()){
18     count++;
19     String name=enumer.nextElement();
20     String value=request.getHeader(name);
21     if(value==null||"".equals(value)){
22         value="空字符串";
23     }
24     %>
25     <p><%=count %>  key:<%=name %>    value:<%=value %></p>
26     <% } %>
27   </body>
28 </html>

 

jsp获取请求头信息

原文:http://www.cnblogs.com/guoyansi19900907/p/4370231.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!