La clase HttpURLConnection es la clase en Java que se ocupa de todas las operaciones relacionadas con la conexión URL. El método getDate() de la clase HttpURLConnection es el método que se usa para obtener la fecha y hora de la conexión URL.
Sintaxis:
Obj.getDate() // Obj is object of HttpUrlConnection class
Parámetro: Este método no toma ningún parámetro. Solo se usa junto con un objeto HttpUrlConnection del que queremos obtener la fecha y la hora de la conexión.
Valores de retorno: Devuelve el día, fecha y hora de conexión.
A continuación se muestra la implementación del código para obtener la fecha de la conexión URL.
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 URL url = new URL("http://www.yahoo.com"); // 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)); } } }
Producción:-
Publicación traducida automáticamente
Artículo escrito por lavishgarg26 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA