Java 教程

Java 控制语句

面向对象编程

Java 内置类

Java 文件处理

Java 错误和异常

Java 多线程

Java 同步

Java 网络

Java 集合

Java 接口

Java 数据结构

Java 集合算法

高级 Java

Java 杂项

Java API 和框架

Java 类参考

Java 有用资源

Java - URLConnection getReadTimeout() 方法



描述

Java URLConnection getReadTimeout() 方法返回读取超时设置。返回值为 0 表示该选项已禁用(即超时时间为无限大)。

声明

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

public int getReadTimeout()

参数

返回值

一个 int 值,表示读取超时值(以毫秒为单位)。

异常

示例 1

以下示例演示了如何使用 Java URLConnection getReadTimeout() 方法获取使用 https 协议的有效 url 的读取超时时间。在本例中,我们创建了一个 URL 类的实例。使用 url.openConnection() 方法,我们获得了 URLConnection 实例。使用 getReadTimeout(),我们获取了 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();
         long headerValue = urlConnection.getReadTimeout();
         System.out.println("Read Timeout: " + Date.from(Instant.ofEpochMilli(headerValue)));
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

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

输出

Read Timeout: Thu Jan 01 05:30:00 IST 1970

示例 2

以下示例演示了如何使用 Java URLConnection getReadTimeout() 方法获取使用 http 协议的有效 url 的读取超时时间。在本例中,我们创建了一个 URL 类的实例。使用 url.openConnection() 方法,我们获得了 URLConnection 实例。使用 getReadTimeout(),我们获取了 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();
         long headerValue = urlConnection.getReadTimeout();
         System.out.println("Read Timeout: " + Date.from(Instant.ofEpochMilli(headerValue)));
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

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

输出

Read Timeout: Thu Jan 01 05:30:00 IST 1970

示例 3

以下示例演示了如何使用 Java URLConnection getReadTimeout() 方法获取使用 http 协议的有效 url 的读取超时时间。在本例中,我们创建了一个 URL 类的实例。使用 url.openConnection() 方法,我们获得了 URLConnection 实例。使用 getReadTimeout(),我们获取了 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();
         long headerValue = urlConnection.getReadTimeout();
         System.out.println("Read Timeout: " + Date.from(Instant.ofEpochMilli(headerValue)));
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

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

输出

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