Android XML String Escape getXmlEncoded(String text)

Here you can find the source of getXmlEncoded(String text)

Description

get Xml Encoded

License

Open Source License

Declaration

public static String getXmlEncoded(String text) 

Method Source Code

//package com.java2s;
/*//from   w w w  . j a  v  a 2  s . c om

 The Martus(tm) free, social justice documentation and
 monitoring software. Copyright (C) 2005-2007, Beneficent
 Technology, Inc. (The Benetech Initiative).

 Martus 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 with the additions and exceptions described in the
 accompanying Martus license file entitled "license.txt".

 It is distributed WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, including warranties of fitness of purpose or
 merchantability.  See the accompanying Martus License and
 GPL license for more details on the required license terms
 for this software.

 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., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.

 To the extent this copyrighted software code is used in the 
 Miradi project, it is subject to a royalty-free license to 
 members of the Conservation Measures Partnership when 
 used with the Miradi software as specified in the agreement 
 between Benetech and WCS dated 5/1/05.
 */

public class Main {
    public static String getXmlEncoded(String text) {
        StringBuffer buf = new StringBuffer(text);
        for (int i = 0; i < buf.length(); ++i) {
            char c = buf.charAt(i);
            if (c == '&') {
                buf.replace(i, i + 1, "&amp;");
            } else if (c == '<') {
                buf.replace(i, i + 1, "&lt;");
            } else if (c == '>') {
                buf.replace(i, i + 1, "&gt;");
            } else if (c == '"') {
                buf.replace(i, i + 1, "&quot;");
            } else if (c == '\'') {
                buf.replace(i, i + 1, "&#39;");
            }
        }
        return buf.toString();
    }
}

Related

  1. toXMLString(String s)
  2. xmlEscape(String xml)
  3. escape(String input)
  4. escapeText(String rawText)
  5. encodeEntities(String content)
  6. encodeEntities(String content)
  7. encodeXML(final String str)
  8. XmlEscape(String value)