Java : IOException 示例

Java 中的 IOException (Java SE 22 & JDK 22) 及其示例。
您将找到大多数 IOException 方法的代码示例。

注解 :

  • 本文可能使用了翻译软件以方便阅读。 另请查看英文原文

简介

表示发生了某种 I/O 异常。此类是由失败或中断的 I/O 操作产生的一般异常类。 (机器翻译)

Class diagram

final var path = Path.of("R:", "java-work", "aaa.txt");
System.out.println(path); // R:\java-work\aaa.txt

System.out.println(Files.notExists(path)); // true

try {
    final var str = Files.readString(path);
} catch (IOException e) {
    System.out.println(e);
}

// Result
// ↓
//java.nio.file.NoSuchFileException: R:\java-work\aaa.txt

Constructors

IOException ()

构造一个 IOException,以 null 作为其错误详细消息。 (机器翻译)

final var e = new IOException();
System.out.println(e); // java.io.IOException

IOException (String message)

使用指定的详细消息构造一个 IOException。 (机器翻译)

final var e = new IOException("abcd");
System.out.println(e); // java.io.IOException: abcd
System.out.println(e.getMessage()); // abcd

IOException (String message, Throwable cause)

使用指定的详细消息和原因构造一个 IOException。 (机器翻译)

final var cause = new IOException("XYZ");
final var e = new IOException("abcd", cause);

System.out.println(e); // java.io.IOException: abcd
System.out.println(e.getMessage()); // abcd

System.out.println(e.getCause()); // java.io.IOException: XYZ
System.out.println(e.getCause().getMessage()); // XYZ

IOException (Throwable cause)

使用指定的原因和详细消息 (cause==null ? null : cause.toString()) 构造一个 IOException(通常包含原因的类和详细消息)。 (机器翻译)

final var cause = new IOException("XYZ");
final var e = new IOException(cause);

System.out.println(e); // java.io.IOException: java.io.IOException: XYZ

System.out.println(e.getCause()); // java.io.IOException: XYZ
System.out.println(e.getCause().getMessage()); // XYZ

Methods declared in Throwable

addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

请参阅下面的链接。


相关文章

To top of page