Java tutorial
//package com.java2s; /* Copyright 2011-2014 Red Hat, Inc This file is part of PressGang CCMS. PressGang CCMS is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. PressGang CCMS 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with PressGang CCMS. If not, see <http://www.gnu.org/licenses/>. */ import java.util.Map; import java.util.Map.Entry; public class Main { /** * This function takes the Map generated by the calculateEntityReplacements function, and uses those values to replace any * entities in the XML string with their unique random integer replacements. The end results is an XML string that contains * no entities, but contains identifiable strings that can be used to replace those entities at a later point. * * @param replacements The Map generated by the calculateEntityReplacements function * @param xml The XML string to modify * @return The modified XML */ public static String replaceEntities(final Map<String, String> replacements, final String xml) { String retValue = xml; for (final Entry<String, String> entry : replacements.entrySet()) retValue = retValue.replaceAll("\\&" + entry.getKey() + ";", entry.getValue()); return retValue; } }