Android HTML String Escape toHTMLString(String s)

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

Description

to HTML String

License

Apache License

Declaration

public static String toHTMLString(String s) 

Method Source Code

//package com.java2s;
/**//from w ww .  j a va  2  s  .  co  m
 * Copyright 2013 ??????
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {

    public static String toHTMLString(String s) {
        StringBuffer stringbuffer = new StringBuffer();
        for (int i = 0; s != null && i < s.length(); i++) {
            char c = s.charAt(i);
            if (c == '\'')
                // stringbuffer.append("&#39;");
                stringbuffer.append(c);
            else if (c == '"')
                // stringbuffer.append("&#34;");
                stringbuffer.append(c);
            else if (c == '\n')
                stringbuffer.append("<BR>\n");
            else if (c == '\t')
                stringbuffer.append("&nbsp;&nbsp;&nbsp;&nbsp;");
            else if (c == '<')
                // stringbuffer.append("&lt;");
                stringbuffer.append(c);
            else if (c == '>')
                // stringbuffer.append("&gt;");
                stringbuffer.append(c);
            else if (c == '&')
                stringbuffer.append("&amp;");
            else
                stringbuffer.append(c);
        }

        return stringbuffer.toString();
    }
}

Related

  1. escapeHtml(String html)
  2. stripHTMLTags(String textToStrip)
  3. checkHtmlView(String strString)
  4. isHTML(String s)