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

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. package compressionFilters;
  18. import java.io.IOException;
  19. import java.util.Enumeration;
  20. import javax.servlet.*;
  21. import javax.servlet.http.*;
  22. /**
  23.  * Very Simple test servlet to test compression filter
  24.  * @author Amy Roh
  25.  * @version $Revision: 496190 $, $Date: 2007-01-14 16:21:45 -0700 (Sun, 14 Jan 2007) $
  26.  */
  27. public class CompressionFilterTestServlet extends HttpServlet {
  28.     public void doGet(HttpServletRequest request, HttpServletResponse response)
  29.         throws ServletException, IOException {
  30.         ServletOutputStream out = response.getOutputStream();
  31.         response.setContentType("text/plain");
  32.         Enumeration e = ((HttpServletRequest)request).getHeaders("Accept-Encoding");
  33.         while (e.hasMoreElements()) {
  34.             String name = (String)e.nextElement();
  35.             out.println(name);
  36.             if (name.indexOf("gzip") != -1) {
  37.                 out.println("gzip supported -- able to compress");
  38.             }
  39.             else {
  40.                 out.println("gzip not supported");
  41.             }
  42.         }
  43.         out.println("Compression Filter Test Servlet");
  44.         out.close();
  45.     }
  46. }