Here you can find the source of decode(String url)
public static String decode(String url)
//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*/ }