HttpURLConnection class is the class in java which deals with all the operations related to URL connection. getDate() method of HttpURLConnection class is the method that is used to get the date and time of the URL Connection.
Syntax:
Obj.getDate() // Obj is object of HttpUrlConnection class
Parameter: This method does not take any parameter. It is just used along with a HttpUrlConnection Object from which we want to fetch the date and time of the connection.
Return values: It returns the day, date and time of connection.
Below is the code implementation to get the date of the URL connection.
Java
// Java Program to get the date of the URL connection import java.io.IOException; import java.net.HttpURLConnection; import java.net.URL; import java.util.Date; import java.util.concurrent.TimeUnit; class Main { public static void main(String args[]) throws IOException, InterruptedException { // getting the URL class object // opening the connection HttpURLConnection httpCon = (HttpURLConnection)url.openConnection(); // getting the date of URL connection long date = httpCon.getDate(); /* Other working of program */ // if date is 0,it means there is no // information regarding date if (date == 0 ) System.out.println( "No date information." ); else { // print the date using object of Date class System.out.println( "Date: " + new Date(date)); } } } |
Output:-