Android XML String Escape toXMLString(String s)

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

Description

to XML String

License

Apache License

Declaration

public static String toXMLString(String s) 

Method Source Code

//package com.java2s;
/**//from   w  ww .j  av  a2  s . c om
 * 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 toXMLString(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. xmlEscape(String xml)
  2. escape(String input)
  3. escapeText(String rawText)
  4. getXmlEncoded(String text)