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

com.qiniu.api.rs.URLUtils Maven / Gradle / Ivy

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

import org.apache.commons.codec.EncoderException;

import com.qiniu.api.url.URLEscape;



public class URLUtils {

	// to do url.escape();
	public static String makeBaseUrl(String domain, String key) throws EncoderException {
		return "http://" + domain + "/" + URLEscape.escape(key);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy