Android URL Decode decode(String url)

Here you can find the source of decode(String url)

Description

decode

Declaration

public static String decode(String url) 

Method Source Code

//package com.java2s;
import java.net.URLDecoder;

public class Main {
    public static String decode(String url) {
        return URLDecoder.decode(url);
    }/*from  w  w w.ja v a 2 s .  c o  m*/
}

Related

  1. decodeUrl(String url)
  2. decode(String url)
  3. decodeURL(String value)
  4. decodeUri(Context ctx, Uri selectedImage)
  5. urlDecode(String in)