Java API Tutorial - Java URLConnection .getHeaderFieldLong (String name, long Default)








Syntax

URLConnection.getHeaderFieldLong(String name, long Default) has the following syntax.

public long getHeaderFieldLong(String name,   long Default)

Example

In the following code shows how to use URLConnection.getHeaderFieldLong(String name, long Default) method.

// www . jav a  2 s .co  m
import java.net.URL;
import java.net.URLConnection;

public class Main{
  public static void main(String args[]) throws Exception {
    URL url = new URL("http://www.google.com");
    URLConnection httpCon = (URLConnection) url.openConnection();

    long s = httpCon.getHeaderFieldLong("longKey", 1L);


 }
}