All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.squeakysand.commons.xml.XmlUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2010-2012 Craig S. Dickson (http://craigsdickson.com)
 *
 * 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
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.squeakysand.commons.xml;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Provides common XML related functionality.
 */
public final class XmlUtils {

    private static final Logger LOG = LoggerFactory.getLogger(XmlUtils.class);

    private XmlUtils() {
    }

    /**
     * Method to convert illegal XML characters (&, <, >, ', ") into corresponding XML entity
     * strings (&amp;, &lt;, &gt;, &apos;, &quot;).
     *
     * @param   plainString  instance to encode
     * @return  encoded result or null if the passed in parameter was null.
     */
    public static String escapeXmlEntities(String plainString) {
        String result = null;
        if (plainString != null) {
            StringBuilder sb = new StringBuilder();
            for (char c : plainString.toCharArray()) {
                switch (c) {
                    case '&' :
                        sb.append("&");
                        break;
                    case '<' :
                        sb.append("<");
                        break;
                    case '>' :
                        sb.append(">");
                        break;
                    case '\'' :
                        sb.append("'");
                        break;
                    case '"' :
                        sb.append(""");
                        break;
                    default :
                        sb.append(c);
                }
            }
            result = sb.toString();
        }
        LOG.debug("original: \"{}\", escaped: \"{}\"", plainString, result);
        return result;
    }

    /**
     * 

unescapeXmlEntities.

* * @param xmlString a {@link java.lang.String} object. * @return a {@link java.lang.String} object. */ public static String unescapeXmlEntities(String xmlString) { String result = xmlString; if (result != null) { result = result.replace(""", "\""); result = result.replace("<", "<"); result = result.replace(">", ">"); result = result.replace("&", "&"); result = result.replace(" ", "" + (char) 160); } LOG.debug("original: \"{}\", unescaped: \"{}\"", xmlString, result); return result; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy