Here you can find the source of htmlEncode(String html)
Parameter | Description |
---|---|
html | a parameter |
public static String htmlEncode(String html)
//package com.java2s; /* GWTUtil.java//from ww w . j a v a2 s. com Copyright (c) 2009 Juergen Schlierf, All Rights Reserved This file is part of Cubusmail (http://code.google.com/p/cubusmail/). This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with Cubusmail. If not, see <http://www.gnu.org/licenses/>. */ public class Main { public static final String HTML_AMPERSAND = "&"; public static final String HTML_LESS_THAN = "<"; public static final String HTML_GREATER_THAN = ">"; public static final String HTML_DASH_POINT = "´"; /** * Convert certain characters (&, <, >, and ') to their HTML character * equivalents for literal display in web pages. * * @param html * @return */ public static String htmlEncode(String html) { if (hasText(html)) { String result = html.replace("&", HTML_AMPERSAND); result = result.replace("<", HTML_GREATER_THAN); result = result.replace(">", HTML_LESS_THAN); result = result.replace("'", HTML_DASH_POINT); return result; } return null; } /** * @param text * @return */ public static boolean hasText(String text) { if (text != null) { if (text.trim().length() > 0) { return true; } } return false; } }