Java HTML Encode toHTML(String s)

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

Description

Converts the given String into HTML, i.e., replacing some char entities with HTML entities.

License

Open Source License

Parameter

Parameter Description
s the string to convert

Return

the HTML conform string, empty string if input was null

Declaration

public static String toHTML(String s) 

Method Source Code

//package com.java2s;
/*/* w  ww . j  ava 2 s .  c o m*/
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Converts the given String into HTML, i.e., replacing some char entities
     * with HTML entities.
     *
     * @param s      the string to convert
     * @return      the HTML conform string, empty string if input was null
     */
    public static String toHTML(String s) {
        String result;

        if (s == null)
            return "";

        result = s;

        result = result.replaceAll("&", "&amp;");
        result = result.replaceAll("<", "&lt;");
        result = result.replaceAll(">", "&gt;");
        result = result.replaceAll("@", "&#64;");
        result = result.replaceAll("/", "&#47;");

        return result;
    }
}

Related

  1. toHTML(String msg)
  2. toHTML(String org, boolean inputValue)
  3. toHtml(String p_str)
  4. toHTML(String plainText)
  5. toHTML(String rawText)
  6. toHtml(String s)
  7. toHtml(String str)
  8. toHtml(String str)
  9. toHtml(String str)