ホームページ >Java >&#&チュートリアル >Javaの詳細メッセージに障害キャプチャ情報を含める方法
private OutputStream openOutputStream(File file) throws IOException { if (file.exists()) { if (file.isDirectory()) { throw new IOException("File '" + file + "' exists but is a directory"); } if (!file.canWrite()) { throw new IOException("File '" + file + "' cannot be written to"); } } else { final File parent = file.getParentFile(); if (parent != null) { if (!parent.mkdirs() && !parent.isDirectory()) { throw new IOException("Directory '" + parent + "' could not be created"); } } } return new FileOutputStream(file, false); }
このメソッドでは、IOException
異なる文字列を使用して、異なる障害キャプチャ情報を渡します。
以上がJavaの詳細メッセージに障害キャプチャ情報を含める方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。