Here you can find the source of decodeUrl(String s)
public static Bundle decodeUrl(String s)
//package com.java2s; import java.net.URLDecoder; import android.os.Bundle; public class Main { public static Bundle decodeUrl(String s) { Bundle params = new Bundle(); if (s != null) { params.putString("url", s); String array[] = s.split("&"); for (String parameter : array) { String v[] = parameter.split("="); if (v.length > 1) { params.putString(v[0], URLDecoder.decode(v[1])); }/*from w w w . j av a2 s . com*/ } } return params; } }