Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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();
    }
}