Java tutorial
//package com.java2s; /******************************************************************************* * 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 *******************************************************************************/ import java.io.File; public class Main { 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)); } }