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