URI.isOpaque() has the following syntax.
public boolean isOpaque()
In the following code shows how to use URI.isOpaque() method.
import java.net.URI; import java.net.URISyntaxException; /* w w w. j ava 2 s .com*/ 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.isOpaque()); } }
The code above generates the following result.