Java URI.getPort()
Syntax
URI.getPort() has the following syntax.
public int getPort()
Example
In the following code shows how to use URI.getPort() method.
import java.net.URI;
import java.net.URISyntaxException;
/*from www . j a v a 2 s. co m*/
public class Main {
public static void main(String[] args) throws NullPointerException, URISyntaxException {
URI uri = new URI("http://www.java2s.com:8080/yourpath/fileName.htm");
System.out.println("URI : " + uri);
System.out.println(uri.getPort());
}
}
The code above generates the following result.