Java API Tutorial - Java URLConnection .getIfModifiedSince ()








Syntax

URLConnection.getIfModifiedSince() has the following syntax.

public long getIfModifiedSince()

Example

In the following code shows how to use URLConnection.getIfModifiedSince() method.

/*from  ww w.j  a  v a 2 s  .  com*/
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();
    
    uc.setIfModifiedSince(1000);
    System.out.println(uc.getIfModifiedSince());
  }

}

The code above generates the following result.