Java URL Encode urlEncodeForSpaces(String input)

Here you can find the source of urlEncodeForSpaces(String input)

Description

This method encodes the URL, removes the spaces from the URL and replaces the same with "%20".

License

Open Source License

Parameter

Parameter Description
input a parameter

Return

String

Declaration

public static String urlEncodeForSpaces(String input) 

Method Source Code

//package com.java2s;
/**//from   ww w . j a  v  a2s.co  m
 * This file Copyright (c) 2005-2008 Aptana, Inc. This program is
 * dual-licensed under both the Aptana Public License and the GNU General
 * Public license. You may elect to use one or the other of these licenses.
 * 
 * This program is distributed in the hope that it will be useful, but
 * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
 * NONINFRINGEMENT. Redistribution, except as permitted by whichever of
 * the GPL or APL you select, is prohibited.
 *
 * 1. For the GPL license (GPL), you can redistribute and/or modify this
 * program under the terms of the GNU General Public License,
 * Version 3, as published by the Free Software Foundation.  You should
 * have received a copy of the GNU General Public License, Version 3 along
 * with this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 * 
 * Aptana provides a special exception to allow redistribution of this file
 * with certain other free and open source software ("FOSS") code and certain additional terms
 * pursuant to Section 7 of the GPL. You may view the exception and these
 * terms on the web at http://www.aptana.com/legal/gpl/.
 * 
 * 2. For the Aptana Public License (APL), this program and the
 * accompanying materials are made available under the terms of the APL
 * v1.0 which accompanies this distribution, and is available at
 * http://www.aptana.com/legal/apl/.
 * 
 * You may view the GPL, Aptana's exception and additional terms, and the
 * APL in the file titled license.html at the root of the corresponding
 * plugin containing this source file.
 * 
 * Any modifications to this file must keep this entire header intact.
 */

public class Main {
    /**
     * This method encodes the URL, removes the spaces from the URL and replaces the same with <code>"%20"</code>.
     * This method is required to fix Bug 77840.
     * 
     * @param input
     * @return String
     * @since 3.0.2
     */
    public static String urlEncodeForSpaces(String input) {

        if (input == null) {
            return null;
        }

        return urlEncodeForSpaces(input.toCharArray());
    }

    /**
     * This method encodes the URL, removes the spaces from the URL and replaces the same with <code>"%20"</code>.
     * This method is required to fix Bug 77840.
     * 
     * @param input
     * @return String
     * @since 3.0.2
     */
    public static String urlEncodeForSpaces(char[] input) {

        if (input == null) {
            return null;
        }

        StringBuffer retu = new StringBuffer(input.length);
        for (int i = 0; i < input.length; i++) {
            if (input[i] == ' ') {
                retu.append("%20"); //$NON-NLS-1$
            } else {
                retu.append(input[i]);
            }
        }
        return retu.toString();
    }
}

Related

  1. urlEncode(String str)
  2. urlEncode(String urlPlain)
  3. urlEncodeFilename(char[] input)
  4. URLEncodeFilePath(String s)
  5. urlEncodeForSpaces(String href)
  6. urlEncodeForSpaces(String input)
  7. urlEncodeParameter(String value)
  8. URLEncoder(String str)
  9. urlEncodeSpace(String s)