Java URL Encode encode(String s)

Here you can find the source of encode(String s)

Description

Like URLEncoder.encode, except translates spaces into %20 instead of +

License

Open Source License

Parameter

Parameter Description
s a parameter

Declaration

public static String encode(String s) 

Method Source Code

//package com.java2s;
/*//from w ww.j a  v a2 s.  c  o m
 * Created on Mar 21, 2006 3:09:00 PM
 * Copyright (C) Azureus Software, Inc, All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * 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 General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

import java.io.UnsupportedEncodingException;
import java.net.*;

public class Main {
    /**
     * Like URLEncoder.encode, except translates spaces into %20 instead of +
     * @param s
     * @return
     */
    public static String encode(String s) {
        if (s == null) {
            return "";
        }
        try {
            return URLEncoder.encode(s, "UTF-8").replaceAll("\\+", "%20");
        } catch (UnsupportedEncodingException e) {
            return URLEncoder.encode(s).replaceAll("\\+", "%20");
        }
    }
}

Related

  1. encode(String s)
  2. encode(String s)
  3. encode(String s)
  4. encode(String s)
  5. encode(String s)
  6. encode(String s)
  7. encode(String s, String enc)
  8. encode(String s, String encoding)
  9. encode(String source)