📜  在Java中获取URL连接的日期

📅  最后修改于: 2022-05-13 01:55:48.020000             🧑  作者: Mango

在Java中获取URL连接的日期

HttpURLConnection 类是Java中处理所有与URL 连接相关的操作的类。 HttpURLConnection 类的getDate()方法是用于获取 URL 连接的日期和时间的方法。

句法:

Obj.getDate()  // Obj is object of HttpUrlConnection class

参数:该方法不带任何参数。它只是与 HttpUrlConnection 对象一起使用,我们希望从中获取连接的日期和时间。

返回值:返回连接的日期、日期和时间。

下面是获取 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));
        }
    }
}


输出:-