URLConnection.getUseCaches() has the following syntax.
public boolean getUseCaches()
In the following code shows how to use URLConnection.getUseCaches() method.
/*from w w w.j a v a2 s .c om*/ import java.net.URL; import java.net.URLConnection; public class Main { public static void main(String args[]) throws Exception { URL u = new URL("http://www.java2s.com"); URLConnection uc = u.openConnection(); System.out.println(uc.getUseCaches()); } }
The code above generates the following result.