Java : IOException - API使用例
IOException (Java SE 22 & JDK 22) の使い方まとめです。
ほとんどのメソッドにサンプルコードがあります。
APIドキュメントのおともにどうぞ。
概要
IOException は、
- InputStream や BufferedReader などの入出力ストリーム
- Files によるファイルやディレクトリ操作
などで問題があったときに発生する チェック例外 です。
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);
}
// 結果
// ↓
//java.nio.file.NoSuchFileException: R:\java-work\aaa.txt
コンストラクタ
IOException ()
final var e = new IOException();
System.out.println(e); // java.io.IOException
IOException (String message)
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)
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)
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
Throwableで宣言されたメソッド
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
「Java API 使用例 : Throwable」をご参照ください。
関連記事
- API 使用例
- Error (エラー)
- Exception (チェック例外)
- RuntimeException (非チェック例外)
- ArithmeticException (算術例外)
- ArrayIndexOutOfBoundsException
- ArrayStoreException
- CancellationException
- ClassCastException (キャスト例外)
- ConcurrentModificationException (並列処理例外)
- DateTimeException (日付・時刻の例外)
- DateTimeParseException (日付・時刻の解析例外)
- IllegalArgumentException
- IllegalStateException
- IndexOutOfBoundsException
- NoSuchElementException
- NullPointerException
- PatternSyntaxException
- StringIndexOutOfBoundsException
- UnsupportedOperationException
- Throwable