Java 教程

Java 控制语句

面向对象编程

Java 内置类

Java 文件处理

Java 错误和异常

Java 多线程

Java 同步

Java 网络编程

Java 集合

Java 接口

Java 数据结构

Java 集合算法

高级 Java

Java 其他

Java API 和框架

Java 类引用

Java 有用资源

Java - URLConnection 的 getDate() 方法及示例



描述

Java URLConnection 的 getDate() 方法返回日期头字段的值。

声明

以下是 java.net.URLConnection.getDate() 方法的声明

public long getDate()

参数

返回值

URL 引用的资源的发送日期,如果未知则为 0。返回的值是从格林威治标准时间 1970 年 1 月 1 日以来的毫秒数。

异常

示例 1

以下示例演示了针对具有 https 协议的有效 url 使用 Java URLConnection getDate() 方法。在此示例中,我们正在创建 URL 类的实例。使用 url.openConnection() 方法,我们获取 URLConnection 实例。使用 getDate(),我们获取 URLConnection 实例的日期头字段的值并打印它。

package com.tutorialspoint;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.time.Instant;
import java.util.Date;

public class UrlConnectionDemo {
   public static void main(String [] args) {
      try {
         URL url = new URL("https://tutorialspoint.com");
         URLConnection urlConnection = url.openConnection();

         System.out.println(Date.from(Instant.ofEpochMilli(urlConnection.getDate())));

      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

让我们编译并运行上述程序,这将产生以下结果:

输出

Tue Dec 05 12:31:57 IST 2023

示例 2

以下示例演示了针对具有 http 协议的有效 url 使用 Java URLConnection getDate() 方法。在此示例中,我们正在创建 URL 类的实例。使用 url.openConnection() 方法,我们获取 URLConnection 实例。使用 getDate(),我们获取 URLConnection 实例的日期头字段的值并打印它。

package com.tutorialspoint;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.time.Instant;
import java.util.Date;

public class UrlConnectionDemo {
   public static void main(String [] args) {
      try {
         URL url = new URL("https://tutorialspoint.com");
         URLConnection urlConnection = url.openConnection();

         System.out.println(Date.from(Instant.ofEpochMilli(urlConnection.getDate())));

      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

让我们编译并运行上述程序,这将产生以下结果:

输出

Tue Dec 05 12:32:42 IST 2023

示例 3

以下示例演示了针对具有 http 协议的 Google url 使用 Java URLConnection getDate() 方法。在此示例中,我们正在创建 URL 类的实例。使用 url.openConnection() 方法,我们获取 URLConnection 实例。使用 getDate(),我们获取 URLConnection 实例的日期头字段的值并打印它。

package com.tutorialspoint;

import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
import java.time.Instant;
import java.util.Date;

public class UrlConnectionDemo {
   public static void main(String [] args) {
      try {
         URL url = new URL("http://www.google.com");
         URLConnection urlConnection = url.openConnection();

         System.out.println(Date.from(Instant.ofEpochMilli(urlConnection.getDate())));

      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

让我们编译并运行上述程序,这将产生以下结果:

输出

Tue Dec 05 12:32:59 IST 2023
java_urlconnection.htm
广告