Java tutorial
//package com.java2s; /* * PHEX - The pure-java Gnutella-servent. * Copyright (C) 2001 - 2005 Phex Development Group * * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * --- CVS Information --- * $Id: XMLUtils.java,v 1.5 2005/10/03 00:18:30 gregork Exp $ */ import java.io.*; public class Main { /** * Writes a string XML encoded to a writer. */ public static void writeEncoded(Writer out, String str) throws IOException { for (int i = 0; i < str.length(); i++) { char ch = str.charAt(i); switch (ch) { case '<': out.write("<"); break; case '>': out.write(">"); break; case '&': out.write("&"); break; case '"': out.write("""); break; case '\'': out.write("'"); break; case '\r': case '\n': out.write(ch); break; default: if (((int) ch < 32) || ((int) ch > 126)) { out.write("&#x"); out.write(Integer.toString((int) ch, 16)); out.write(';'); } else { out.write(ch); } } } } }