Skip to content Skip to sidebar Skip to footer

Urlencodedutils Deprecated In Android

URLEncodedUtils is deprecated in Android API 22+. What could I use instead in this code? I need to change URLEncode.Utils.Format() line. public String construct() { return (iftru

Solution 1:

You can use java inbuilt method java.net.URLEncoder to construct url with param data. URLEncoder.encode(yParam, "UTF-8")

Change your method and check it.

`public String construct() {
    return (iftrue? HOSTING_NAME : _NAME) + yDomain
            + (param.size() > 0 ? "?" + URLEncoder.encode(yParam, "UTF-8"): "");}`

Post a Comment for "Urlencodedutils Deprecated In Android"