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