normal ASCII String - Android XML

Android examples for XML:XML String

Description

normal ASCII String

Demo Code

/********************************************************************************
 *
 *   Copyright (C) 2005  Svyatoslav Urbanovych
 *
 * 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.
 *********************************************************************************/
//package com.java2s;

public class Main {
    public static void main(String[] argv) throws Exception {
        String input = "java2s.com";
        System.out.println(normalASCII(input));
    }//from w  w w .jav a 2  s .  c  om

    public static String normalASCII(String input) {
        if (input == null || input.length() == 0)
            return "";
        String result = "";
        for (int i = 0; i < input.length(); i++) {
            char c = input.charAt(i);
            int ascii = (int) c;
            //      if(ascii!=19 && ascii!=7 && ascii!=25)
            //         result+="&#"+ascii+";";

            if ((ascii == 0x9) || (ascii == 0xA) || (ascii == 0xD)
                    || ((ascii >= 0x20) && (ascii <= 0xD7FF))
                    || ((ascii >= 0xE000) && (ascii <= 0xFFFD))
                    || ((ascii >= 0x10000) && (ascii <= 0x10FFFF))) {
                result += "&#" + ascii + ";";
            }

        }

        return result;

    }
}

Related Tutorials