Android Utililty Methods URL Encode

List of utility methods to do URL Encode

Description

The list of methods to do URL Encode are organized into topic(s).

Method

StringescapeURL(String link)
escape URL
try {
    String path = link;
    path = java.net.URLEncoder.encode(path, "utf8");
    path = path.replace("%3A", ":");
    path = path.replace("%2F", "/");
    path = path.replace("+", "%20");
    path = path.replace("%23", "#");
    path = path.replace("%3D", "=");
...