URLConnection.getHeaderFieldDate(String name, long Default) has the following syntax.
public long getHeaderFieldDate(String name, long Default)
In the following code shows how to use URLConnection.getHeaderFieldDate(String name, long Default) method.
//w w w. ja v a2 s. com 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.getHeaderFieldDate("Date",10000); System.out.println(s); } }
The code above generates the following result.