Java HTML Encode htmlEncode(String s)

Here you can find the source of htmlEncode(String s)

Description

html Encode

License

Open Source License

Declaration

public static String htmlEncode(String s) 

Method Source Code

//package com.java2s;
/*//from   www  .  ja  v  a2  s .  c  o  m
    
Copyright (c) 2000-2003 Board of Trustees of Leland Stanford Jr. University,
all rights reserved.
    
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
STANFORD UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    
Except as contained in this notice, the name of Stanford University shall not
be used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from Stanford University.
    
*/

public class Main {
    public static String htmlEncode(String s) {
        StringBuffer sb = new StringBuffer();
        int len = s.length();
        for (int counter = 0; counter < len; counter++) {
            char c = s.charAt(counter);
            // This will change, we need better support character level
            // entities.
            switch (c) {
            // Character level entities.
            case '<':
                sb.append("&lt;");
                break;
            case '>':
                sb.append("&gt;");
                break;
            case '&':
                sb.append("&amp;");
                break;
            case '"':
                sb.append("&quot;");
                break;
            // Special characters
            case '\n':
                sb.append("<br>");
                break;
            /*
              case '\t':
              case '\r':
              break;
            */
            default:
                if (c < ' ' || c > 127) {
                    // If the character is outside of ascii, write the
                    // numeric value.
                    sb.append("&#");
                    sb.append(String.valueOf((int) c));
                    sb.append(";");
                } else {
                    sb.append(c);
                }
                break;
            }
        }
        return sb.toString();
    }
}

Related

  1. htmlEncode(String html)
  2. htmlEncode(String html)
  3. htmlEncode(String input)
  4. htmlEncode(String input)
  5. HTMLEncode(String s)
  6. htmlEncode(String s)
  7. htmlEncode(String s)
  8. htmlEncode(String s)
  9. htmlEncode(String s)