Android examples for XML:XML String Escape
escaped XML String
/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * 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 *******************************************************************************/ //package com.java2s; import java.io.File; public class Main { public static void main(String[] argv) throws Exception { Class clazz = String.class; System.out.println(escaped(clazz)); }/* w w w .j a va 2 s . c o m*/ public static String escaped(Class<?> clazz) { return escaped(clazz.getName()); } public static String escaped(File path) { return escaped(path.getAbsolutePath()); } public static String escaped(String raw) { StringBuilder ret = new StringBuilder(); for (char c : raw.toCharArray()) { switch (c) { case '\"': ret.append("""); break; case '\'': ret.append("'"); break; case '<': ret.append("<"); break; case '>': ret.append(">"); break; case '&': ret.append("&"); break; default: ret.append(c); break; } } return ret.toString(); } public static String escaped(String format, Object... args) { return escaped(String.format(format, args)); } }