Android HTML Encode htmlEncode(String stringToEncode)

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

Description

html Encode

License

Open Source License

Declaration

public static String htmlEncode(String stringToEncode) 

Method Source Code

//package com.java2s;
/*//from   ww  w  . j ava2  s .co m
 * Copyright (C) 2010 Geometer Plus <contact@geometerplus.com>
 *
 * 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 2 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 */

public class Main {
    private static final char[] hexDigits = { '0', '1', '2', '3', '4', '5',
            '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

    public static String htmlEncode(String stringToEncode) {
        if (stringToEncode == null) {
            return null;
        }
        StringBuilder encodedString = new StringBuilder();
        for (int i = 0; i < stringToEncode.length(); ++i) {
            final char ch = stringToEncode.charAt(i);
            if (Character.isLetterOrDigit(ch) || (ch == '.') || (ch == '~')
                    || (ch == '-') || (ch == '_')) {
                encodedString.append(ch);
            } else {
                try {
                    byte[] bytes = String.valueOf(ch).getBytes("UTF-8");
                    for (byte b : bytes) {
                        encodedString.append('%').append(hexDigits[b / 16])
                                .append(hexDigits[b % 16]);
                    }
                } catch (java.io.UnsupportedEncodingException ex) {
                }
            }
        }
        return encodedString.toString();
    }
}

Related

  1. htmEncode(String input)
  2. htmlencode(String str)
  3. replaceHTMLTags(final String source)
  4. encodeHtml(String to_encode)
  5. fromHTML(String textToTransform)