首頁 > Java > java教程 > java如何在詳細訊息中包含故障捕獲訊息

java如何在詳細訊息中包含故障捕獲訊息

WBOY
發布: 2023-05-20 23:10:05
轉載
1018 人瀏覽過

在詳細訊息中包含故障擷取訊息

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中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板