URLConnection.getHeaderFieldLong(String name, long Default) has the following syntax.
public long getHeaderFieldLong(String name, long Default)
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); } }