Java tutorial
//package com.java2s; import android.net.Uri; public class Main { /** * get the protocol of the url */ public static int getPort(String url) { return Uri.parse(url).getPort(); } }