Android URL Decode parseUrl(String url)

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

Description

parse Url

Declaration

public static Bundle parseUrl(String url) 

Method Source Code

//package com.java2s;
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLDecoder;

import android.os.Bundle;

public class Main {
    public static Bundle parseUrl(String url) {

        try {//from w w  w .  j  a v  a2 s.c  om
            URL u = new URL(url);
            Bundle b = decodeUrl(u.getQuery());
            b.putAll(decodeUrl(u.getRef()));
            return b;
        } catch (MalformedURLException e) {
            return new Bundle();
        }
    }

    public static Bundle decodeUrl(String s) {
        Bundle params = new Bundle();

        try {

            if (s != null) {
                String array[] = s.split("&");
                for (String parameter : array) {
                    String v[] = parameter.split("=");
                    params.putString(URLDecoder.decode(v[0], "UTF-8"),
                            URLDecoder.decode(v[1], "UTF-8"));
                }
            }

        } catch (UnsupportedEncodingException e) {
        }

        return params;
    }
}

Related

  1. decodeUrl(String s)
  2. decodeUrlFormEncoded(String data)
  3. parseForHTTP(String str)
  4. parseLastfmUrl(String url)
  5. parseUrl(String url)
  6. parserTrackURL(String trackURL)