Android URL Decode urlDecode(String in)

Here you can find the source of urlDecode(String in)

Description

url Decode

Declaration

public static String urlDecode(String in) 

Method Source Code

//package com.java2s;

import java.net.URLDecoder;

public class Main {
    public static String urlDecode(String in) {
        return URLDecoder.decode(in);
    }/*from  w  w  w .  j  a va  2  s .com*/
}

Related

  1. decodeUrl(String url)
  2. decode(String url)
  3. decode(String url)
  4. decodeURL(String value)
  5. decodeUri(Context ctx, Uri selectedImage)
  6. decode(final String content, final String encoding)
  7. decode(String s)
  8. decodeUrl(String s)
  9. decodeUrl(String s)