HTMLFilter.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 util;
  18. /**
  19.  * HTML filter utility.
  20.  *
  21.  * @author Craig R. McClanahan
  22.  * @author Tim Tye
  23.  * @version $Revision: 466607 $ $Date: 2006-10-21 17:09:50 -0600 (Sat, 21 Oct 2006) $
  24.  */
  25. public final class HTMLFilter {
  26.     /**
  27.      * Filter the specified message string for characters that are sensitive
  28.      * in HTML.  This avoids potential attacks caused by including JavaScript
  29.      * codes in the request URL that is often reported in error messages.
  30.      *
  31.      * @param message The message string to be filtered
  32.      */
  33.     public static String filter(String message) {
  34.         if (message == null)
  35.             return (null);
  36.         char content[] = new char[message.length()];
  37.         message.getChars(0, message.length(), content, 0);
  38.         StringBuffer result = new StringBuffer(content.length + 50);
  39.         for (int i = 0; i < content.length; i++) {
  40.             switch (content[i]) {
  41.             case '<':
  42.                 result.append("&lt;");
  43.                 break;
  44.             case '>':
  45.                 result.append("&gt;");
  46.                 break;
  47.             case '&':
  48.                 result.append("&amp;");
  49.                 break;
  50.             case '"':
  51.                 result.append("&quot;");
  52.                 break;
  53.             default:
  54.                 result.append(content[i]);
  55.             }
  56.         }
  57.         return (result.toString());
  58.     }
  59. }