Java 教程

Java 控制语句

面向对象编程

Java 内置类

Java 文件处理

Java 错误和异常

Java 多线程

Java 同步

Java 网络编程

Java 集合

Java 接口

Java 数据结构

Java 集合算法

高级 Java

Java 其他

Java API 和框架

Java 类参考

Java 有用资源

Java - URLConnection getExpiration()



描述

Java URLConnection getExpiration() 方法返回 expires 头字段的值。

声明

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

public long getExpiration()

参数

返回值

此 URL 引用的资源的过期日期,如果未知则为 0。该值为自 1970 年 1 月 1 日 GMT 以来的毫秒数。

异常

示例 1

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

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.getExpiration())));

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

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

输出

Fri Jan 05 10:22:29 IST 2024

示例 2

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

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.getExpiration())));

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

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

输出

Fri Jan 05 10:22:50 IST 2024

示例 3

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

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.getExpiration())));

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

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

输出

Thu Jan 01 05:30:00 IST 1970
java_urlconnection.htm
广告