Java URLConnection .setIfModifiedSince (long ifmodifiedsince)
Syntax
URLConnection.setIfModifiedSince(long ifmodifiedsince) has the following syntax.
public void setIfModifiedSince(long ifmodifiedsince)
Example
In the following code shows how to use URLConnection.setIfModifiedSince(long ifmodifiedsince) method.
import java.net.URL;
import java.net.URLConnection;
// w w w . j a v a 2 s . co 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.setIfModifiedSince(1000);
System.out.println(uc.getIfModifiedSince());
}
}
The code above generates the following result.