Android examples for Network:URL
Gets the host from given url
//package com.java2s; import android.net.Uri; public class Main { /**/* w w w .j a v a2 s .c o m*/ * Gets the host from given url */ public static String getHostFromUrl(String url) { Uri uri = Uri.parse(url); return uri.getHost(); } }