List of usage examples for com.liferay.portal.kernel.util URLCodec encodeURL
public static String encodeURL(String rawURLString, String charsetName, boolean escapeSpaces)
From source file:com.twelve.capital.external.feed.util.HttpImpl.java
License:Open Source License
@Override public String encodeURL(String url, boolean escapeSpaces) { if (Validator.isNull(url)) { return url; }/*from w ww. ja v a 2 s.c o m*/ return URLCodec.encodeURL(url, StringPool.UTF8, escapeSpaces); }