Package de.galan.commons.net
Class UrlUtil
java.lang.Object
de.galan.commons.net.UrlUtil
Url-related helper functionality.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringUses URLDecoder to decode a application/x-www-form-urlencoded string, using UTF-8 as Charset.static StringUses URLDecoder to decode a application/x-www-form-urlencoded string, using the given Charset.static StringUses URLEncoder to translate a string into application/x-www-form-urlencoded format, using UTF-8 as Charset.static StringUses URLEncoder to translate a string into application/x-www-form-urlencoded format, using the given Charset.
-
Constructor Details
-
UrlUtil
public UrlUtil()
-
-
Method Details
-
encode
Uses URLEncoder to translate a string into application/x-www-form-urlencoded format, using the given Charset. -
encode
Uses URLEncoder to translate a string into application/x-www-form-urlencoded format, using UTF-8 as Charset. -
decode
Uses URLDecoder to decode a application/x-www-form-urlencoded string, using the given Charset. -
decode
Uses URLDecoder to decode a application/x-www-form-urlencoded string, using UTF-8 as Charset.
-