org.hardisonbrewing.maven.core.StringEscapeUtils.java Source code

Java tutorial

Introduction

Here is the source code for org.hardisonbrewing.maven.core.StringEscapeUtils.java

Source

/**
 * Copyright (c) 2010-2011 Martin M Reed
 *
 * This program 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.
 *
 * 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package org.hardisonbrewing.maven.core;

import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;

public class StringEscapeUtils extends org.apache.commons.lang.StringEscapeUtils {

    protected StringEscapeUtils() {

        // do nothing
    }

    @SuppressWarnings("deprecation")
    public static final String escapeURI(String text) {

        if (text == null || text.length() == 0) {
            return text;
        }
        try {
            text = URLEncoder.encode(text, "UTF-8");
        } catch (UnsupportedEncodingException e) {
            text = URLEncoder.encode(text);
        }
        return text.replaceAll("\\+", "%20");
    }
}