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

com.qiniu.api.url.URLEscape Maven / Gradle / Ivy

There is a newer version: 6.1.9
Show newest version
package com.qiniu.api.url;


import org.apache.commons.codec.EncoderException;
import org.apache.commons.codec.net.URLCodec;

public class URLEscape {

	public static String escape(String url) throws EncoderException {
		URLCodec urlEncoder = new URLCodec("UTF-8");
		return urlEncoder.encode(url).replace("+", "%20");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy