RequestHeaderExample.java
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements.  See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License.  You may obtain a copy of the License at
  8. *
  9. *     http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id: RequestHeaderExample.java 466607 2006-10-21 23:09:50Z markt $
  18.  *
  19.  */
  20. import java.io.*;
  21. import java.text.*;
  22. import java.util.*;
  23. import javax.servlet.*;
  24. import javax.servlet.http.*;
  25. import util.HTMLFilter;
  26. /**
  27.  * Example servlet showing request headers
  28.  *
  29.  * @author James Duncan Davidson <duncan@eng.sun.com>
  30.  */
  31. public class RequestHeaderExample extends HttpServlet {
  32.     ResourceBundle rb = ResourceBundle.getBundle("LocalStrings");
  33.     
  34.     public void doGet(HttpServletRequest request,
  35.                       HttpServletResponse response)
  36.         throws IOException, ServletException
  37.     {
  38.         response.setContentType("text/html");
  39.         PrintWriter out = response.getWriter();
  40.         out.println("<html>");
  41.         out.println("<body bgcolor="white">");
  42.         out.println("<head>");
  43.         String title = rb.getString("requestheader.title");
  44.         out.println("<title>" + title + "</title>");
  45.         out.println("</head>");
  46.         out.println("<body>");
  47. // all links relative
  48.         // XXX
  49.         // making these absolute till we work out the
  50.         // addition of a PathInfo issue 
  51.         out.println("<a href="../reqheaders.html">");
  52.         out.println("<img src="../images/code.gif" height=24 " +
  53.                     "width=24 align=right border=0 alt="view code"></a>");
  54.         out.println("<a href="../index.html">");
  55.         out.println("<img src="../images/return.gif" height=24 " +
  56.                     "width=24 align=right border=0 alt="return"></a>");
  57.         out.println("<h3>" + title + "</h3>");
  58.         out.println("<table border=0>");
  59.         Enumeration e = request.getHeaderNames();
  60.         while (e.hasMoreElements()) {
  61.             String headerName = (String)e.nextElement();
  62.             String headerValue = request.getHeader(headerName);
  63.             out.println("<tr><td bgcolor="#CCCCCC">");
  64.             out.println(HTMLFilter.filter(headerName));
  65.             out.println("</td><td>");
  66.             out.println(HTMLFilter.filter(headerValue));
  67.             out.println("</td></tr>");
  68.         }
  69.         out.println("</table>");
  70.     }
  71.     public void doPost(HttpServletRequest request,
  72.                       HttpServletResponse response)
  73.         throws IOException, ServletException
  74.     {
  75.         doGet(request, response);
  76.     }
  77. }